summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
commit267bebfc227c94f543a39e2aa75fb101bc06932e (patch)
tree40ad8057634ba80aa19c61f57884982fd59f6b56 /config.h
parent88b1e9e505dad78fd2c3ff927495d322b11491ca (diff)
Moved engine-sources to seperate subdirectory.
Diffstat (limited to 'config.h')
-rw-r--r--config.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/config.h b/config.h
deleted file mode 100644
index 6884b1a..0000000
--- a/config.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef CONFIG_H
-#define CONFIG_H
-
-namespace Config {
- const unsigned int window_w = 1280;
- const unsigned int window_h = 800;
-
- const float viewport_x = 15.0 / 1080.0;
- const float viewport_y = 15.0 / 1080.0;
- const float viewport_w = 900.0 / 1080.0;
- const float viewport_h = 1050.0 / 1080.0;
-
- const unsigned int viewport_overscan = 10;
-
- const float viewport_aspect = float(viewport_h) / float(viewport_w);
-
- const float fps_x = 0.0;
- const float fps_y = 0.0;
-};
-
-#endif