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