aboutsummaryrefslogtreecommitdiff
path: root/src/map.hh
blob: 298d19033ca522bc57666025bb1dde552cf76cf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef TIBIA_MAP_HH_
#define TIBIA_MAP_HH_ 1

#include "common.hh"

// TODO(fusion): I'm not sure whether to put these.

struct Object {
	uint32 ObjectID;
};

constexpr Object NONE = {};

struct ObjectType {
	int TypeID;
};

struct TObjectType {
	char *Name;
	char *Description;
	uint8 Flags[9];
	uint32 Attributes[62];
	int AttributeOffsets[18];
};

#endif //TIBIA_MAP_HH_