mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
21 lines
434 B
C++
21 lines
434 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__
|