mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
Fixed: tile_edit compilation
This commit is contained in:
parent
48466ada3c
commit
245b8b6bee
7 changed files with 5 additions and 11 deletions
|
@ -15,7 +15,6 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "tile_edit.h"
|
|
||||||
|
|
||||||
extern ClassDesc2* GetTile_editDesc();
|
extern ClassDesc2* GetTile_editDesc();
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "tile_edit.h"
|
|
||||||
#include "Popup.h"
|
#include "Popup.h"
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "tile_edit.h"
|
|
||||||
#include "TileCtrl.h"
|
#include "TileCtrl.h"
|
||||||
#include "browse.h"
|
#include "browse.h"
|
||||||
|
|
||||||
|
|
|
@ -59,9 +59,7 @@ public:
|
||||||
int h,b,g,d; //index dans la liste des bordures pour le haut, le bas, la gauche et la droite du tile
|
int h,b,g,d; //index dans la liste des bordures pour le haut, le bas, la gauche et la droite du tile
|
||||||
};
|
};
|
||||||
|
|
||||||
using namespace std;
|
typedef std::list<TileInfo*> tilelist;
|
||||||
|
|
||||||
typedef list<TileInfo*> tilelist;
|
|
||||||
|
|
||||||
class TileList
|
class TileList
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "tile_edit.h"
|
#include "tile_edit_exe.h"
|
||||||
#include "TileList.h"
|
#include "TileList.h"
|
||||||
#include "browse.h"
|
#include "browse.h"
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "tile_edit.h"
|
#include "tile_edit_exe.h"
|
||||||
#include "TileView.h"
|
#include "TileView.h"
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
@ -50,8 +50,8 @@ END_MESSAGE_MAP()
|
||||||
void TileView::OnDropFiles(HDROP hDropInfo)
|
void TileView::OnDropFiles(HDROP hDropInfo)
|
||||||
{
|
{
|
||||||
// TODO: Add your message handler code here and/or call default
|
// TODO: Add your message handler code here and/or call default
|
||||||
*parent=this->GetParent();
|
// *parent=this->GetParent();
|
||||||
if (parent) parent->
|
// if (parent) parent->
|
||||||
|
|
||||||
CListCtrl::OnDropFiles(hDropInfo);
|
CListCtrl::OnDropFiles(hDropInfo);
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,6 @@ typedef struct ROUT
|
||||||
unsigned long time;
|
unsigned long time;
|
||||||
} ROUT;
|
} ROUT;
|
||||||
*/
|
*/
|
||||||
#include "..\tile_edit\tile_edit.h"
|
|
||||||
|
|
||||||
ROUT Routines[20];
|
ROUT Routines[20];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue