]> git.localhorst.tv Git - space.git/blob - src/world/Universe.h
grid view
[space.git] / src / world / Universe.h
1 #ifndef SPACE_UNIVERSE_H_
2 #define SPACE_UNIVERSE_H_
3
4 namespace space {
5
6 class Sector;
7
8 class Universe {
9
10 public:
11         Universe(int w, int h, int sec_w, int sec_h, int numres);
12         ~Universe();
13 private:
14         Universe(const Universe &);
15         Universe &operator =(const Universe &);
16
17 private:
18         int w;
19         int h;
20         int numres;
21         int total;
22         Sector *sec_begin;
23         Sector *sec_end;
24
25 };
26
27 }
28
29 #endif