aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/load_core.h
blob: 3e4b2df81a084a458292790ce6c19d68bab08583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct Entity {

};

struct EntityPoint : Entity{
	double pos[3] = {0,0,0};
};

struct EntityMass : PointEntity{
	double ang[3] = {0,0,0};
	int mass = 0;
};