X-Git-Url: http://git.localhorst.tv/?p=space.git;a=blobdiff_plain;f=src%2Fworld%2FSector.h;fp=src%2Fworld%2FSector.h;h=d5c101cc180695076589334417cb7c4e82f929e2;hp=fa27b7fa5f1edb9c427a9ddc136bf1f6a96fc8f2;hb=3f4f8a92f64df08119a40da4d196b3e92ecdc637;hpb=96ab5904b059e00e78b26a6527790c8dc951e324 diff --git a/src/world/Sector.h b/src/world/Sector.h index fa27b7f..d5c101c 100644 --- a/src/world/Sector.h +++ b/src/world/Sector.h @@ -1,20 +1,22 @@ #ifndef SPACE_SECTOR_H_ #define SPACE_SECTOR_H_ +#include "../math/Vector.h" + + namespace space { class Sector { public: - Sector(int w, int h, int numres); + Sector(Vector size, int numres); ~Sector(); Sector(const Sector &) = delete; Sector &operator =(const Sector &) = delete; private: - int w; - int h; + Vector size; int numres; int total; int *res_begin;