Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
927 B
Referenced Files
None
Subscribers
None
diff --git a/cmakelists.txt b/CMakeLists.txt
similarity index 100%
rename from cmakelists.txt
rename to CMakeLists.txt
diff --git a/src/GameFloor.h b/src/GameFloor.h
index a26e99d..501ca20 100644
--- a/src/GameFloor.h
+++ b/src/GameFloor.h
@@ -1,30 +1,30 @@
#ifndef GAMEFLOOR_H
#define GAMEFLOOR_H
-#include "constants.h"
+#include "Constants.h"
#include "DungeonMap.h"
class GameFloor
{
public:
GameFloor(int level);
virtual ~GameFloor();
void createFloor();
void displayToConsole();
int getRoom(int x, int y);
DungeonMap* getMap(int x, int y);
DungeonMap* getAndVisitMap(int x, int y);
protected:
private:
int level;
int floor[FLOOR_WIDTH][FLOOR_HEIGHT];
int neighboorCount(int x, int y);
bool isSuperIsolated(int x, int y);
void generate();
bool finalize();
DungeonMap* maps[FLOOR_WIDTH][FLOOR_HEIGHT];
};
#endif // GAMEFLOOR_H

File Metadata

Mime Type
text/x-diff
Expires
Thu, Jun 11, 11:45 AM (3 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68857
Default Alt Text
(927 B)

Event Timeline