mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
c351496a47
* merged changes from trunk (since r461)
19 lines
437 B
C++
19 lines
437 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
|