]> git.localhorst.tv Git - space.git/blob - src/world/Resource.h
added resources
[space.git] / src / world / Resource.h
1 #ifndef SPACE_RESOURCE_H_
2 #define SPACE_RESOURCE_H_
3
4 namespace space {
5
6 class Resource {
7
8 public:
9         Resource();
10         Resource(const char *name, float density);
11
12 public:
13         int id;
14         const char *name;
15         float density;
16
17 };
18
19 }
20
21 #endif