]> git.localhorst.tv Git - space.git/blobdiff - src/world/Sector.h
some cleanup
[space.git] / src / world / Sector.h
diff --git a/src/world/Sector.h b/src/world/Sector.h
deleted file mode 100644 (file)
index d5c101c..0000000
+++ /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<int> size, int numres);
-       ~Sector();
-
-       Sector(const Sector &) = delete;
-       Sector &operator =(const Sector &) = delete;
-
-private:
-       Vector<int> size;
-       int numres;
-       int total;
-       int *res_begin;
-       int *res_end;
-
-};
-
-}
-
-#endif