mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
cc7be20b07
Because of really huge amount of modifications here I've probably missed some minor stuff. I doubt if it's still compatible with gcc - some changes should be reapplied.
20 lines
439 B
C++
20 lines
439 B
C++
#ifndef CAMBARCENDAMO_H
|
|
#define CAMBARCENDAMO_H
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "../global.h"
|
|
#include "../map.h"
|
|
#include "CCreatureHandler.h"
|
|
|
|
class DLL_EXPORT CAmbarCendamo
|
|
{
|
|
public:
|
|
/////////////////member variables
|
|
//Mapa* map;
|
|
|
|
//CAmbarCendamo (unsigned char * data); // c-tor; data is pointer to decompressed h3m data
|
|
//~CAmbarCendamo (); // d-tor
|
|
};
|
|
#endif //CAMBARCENDAMO_H
|