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

25 lines
453 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;
_BYTE gap10[496];
msvc::string world_name;
int seed;
_BYTE gap224[532];
cube::Creature *local_creature;
_BYTE gap440[247];
char end;
};
}
#endif // WORLD_H