X-Git-Url: http://git.localhorst.tv/?p=space.git;a=blobdiff_plain;f=src%2Fworld%2FSector.h;fp=src%2Fworld%2FSector.h;h=0000000000000000000000000000000000000000;hp=d5c101cc180695076589334417cb7c4e82f929e2;hb=11306935dbf7213d583222ce239985e1b3f180bf;hpb=a1fd5c4181db1da990b6280892eb1b9f31b73871 diff --git a/src/world/Sector.h b/src/world/Sector.h deleted file mode 100644 index d5c101c..0000000 --- a/src/world/Sector.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef SPACE_SECTOR_H_ -#define SPACE_SECTOR_H_ - -#include "../math/Vector.h" - - -namespace space { - -class Sector { - -public: - Sector(Vector size, int numres); - ~Sector(); - - Sector(const Sector &) = delete; - Sector &operator =(const Sector &) = delete; - -private: - Vector size; - int numres; - int total; - int *res_begin; - int *res_end; - -}; - -} - -#endif