Tweaking, fixed a very old off by one bug on voxel gen

This commit is contained in:
MitchellHansen
2017-10-21 06:54:09 -07:00
parent dcf355c636
commit 36bf5697fa
9 changed files with 54 additions and 47 deletions

View File

@@ -23,7 +23,7 @@
#include "util.hpp"
#include <SFML/Graphics.hpp>
#include "CLCaster.h"
//#include "CLCaster.h"
#include "Camera.h"
#include "Input.h"
#include "LightController.h"
@@ -36,15 +36,17 @@
#undef ERROR
#include "Logger.h"
class CLCaster;
class Application {
public:
const int WINDOW_X = 1600;
const int WINDOW_Y = 900;
static const int WINDOW_X = 1600;
static const int WINDOW_Y = 900;
const int MAP_X = 64;
const int MAP_Y = 64;
const int MAP_Z = 64;
static const int MAP_X = 32;
static const int MAP_Y = 32;
static const int MAP_Z = 32;
Application();
~Application();