Cube-World-Commands-Mod/cwmods/cube/World.h

27 lines
512 B
C
Raw Normal View History

2019-09-23 07:50:21 +08:00
#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;
2019-09-26 08:02:55 +08:00
_BYTE gap10[416];
2019-09-24 07:10:20 +08:00
cube::World *self_ptr;
_BYTE gap1A8[72];
2019-09-23 07:50:21 +08:00
msvc::string world_name;
int seed;
2019-09-24 07:10:20 +08:00
_BYTE gap214[548];
2019-09-23 07:50:21 +08:00
cube::Creature *local_creature;
_BYTE gap440[247];
char end;
};
}
#endif // WORLD_H