25 lines
453 B
C
25 lines
453 B
C
|
#ifndef WORLD_H
|
||
|
#define WORLD_H
|
||
|
|
||
|
#include "../msvc/string.h"
|
||
|
#include "Creature.h"
|
||
|
#include "../IDA/types.h"
|
||
|
|
||
|
namespace cube {
|
||
|
class World {
|
||
|
public:
|
||
|
void *vtable;
|
||
|
int day;
|
||
|
float time;
|
||
|
_BYTE gap10[496];
|
||
|
msvc::string world_name;
|
||
|
int seed;
|
||
|
_BYTE gap224[532];
|
||
|
cube::Creature *local_creature;
|
||
|
_BYTE gap440[247];
|
||
|
char end;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // WORLD_H
|