rebuild SurroundMap (WIP)

This commit is contained in:
MihailRis
2024-09-10 14:50:57 +03:00
parent 7c0c268508
commit 2a4dbe3ac4
4 changed files with 35 additions and 149 deletions
+1 -7
View File
@@ -3,11 +3,5 @@
#include "world/generator/SurroundMap.hpp"
TEST(SurroundMap, InitTest) {
int w = 8;
int h = 8;
SurroundMap map;
map.createEntry({w/2, h/2});
map.createEntry({w/2+1, h/2+1});
EXPECT_EQ(map.upgrade().size(), 12);
SurroundMap map(50, 8);
}