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