summaryrefslogtreecommitdiff
path: root/commonTypes.h
diff options
context:
space:
mode:
authorJapa2010-04-09 14:12:29 +0000
committerJapa2010-04-09 14:12:29 +0000
commit81aefc8e03ff3f647494012e18bcdc8f33f4de42 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /commonTypes.h
parentc3d0b7d6778af46299901d959d589d6599afa21c (diff)
downloadstonesense-81aefc8e03ff3f647494012e18bcdc8f33f4de42.tar.gz
stonesense-81aefc8e03ff3f647494012e18bcdc8f33f4de42.tar.bz2
stonesense-81aefc8e03ff3f647494012e18bcdc8f33f4de42.tar.xz
There is no trunk
it is not the code that compiles, it is you.
Diffstat (limited to 'commonTypes.h')
-rw-r--r--commonTypes.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/commonTypes.h b/commonTypes.h
deleted file mode 100644
index f8f154d..0000000
--- a/commonTypes.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#pragma once
-
-
-
-struct t_SpriteWithOffset{
- int32_t sheetIndex;
- int16_t x;
- int16_t y;
- int32_t fileIndex;
- char animFrames;
-} ;
-
-
-typedef struct Crd2D {
- int32_t x,y;
-}Crd2D;
-typedef struct Crd3D {
- int32_t x,y,z;
-}Crd3D;
-
-
-
-
-typedef struct {
- bool show_zones;
- bool show_stockpiles;
- bool show_osd;
- bool single_layer_view;
- bool shade_hidden_blocks;
- bool show_hidden_blocks;
- bool show_creature_names;
- bool names_use_nick;
- bool names_use_species;
- bool show_all_creatures;
- bool load_ground_materials;
- bool hide_outer_blocks;
- bool debug_mode;
- bool track_center;
- int lift_segment_offscreen;
- bool truncate_walls;
- bool follow_DFscreen;
- bool verbose_logging;
- int viewXoffset;
- int viewYoffset;
- int viewZoffset;
- int automatic_reload_time;
- int automatic_reload_step;
- int animation_step;
-
- int screenWidth;
- int screenHeight;
- bool Fullscreen;
- bool show_intro;
- int fogr;
- int fogg;
- int fogb;
- int foga;
- int backr;
- int backg;
- int backb;
-
- Crd3D segmentSize;
-
-} GameConfiguration;
-
-
-enum enumCreatureSex{
- eCreatureSex_NA,
- eCreatureSex_Male,
- eCreatureSex_Female
-}; \ No newline at end of file