summaryrefslogtreecommitdiff
path: root/GUI.h
diff options
context:
space:
mode:
authorJapa2010-04-09 14:12:29 +0000
committerJapa2010-04-09 14:12:29 +0000
commit81aefc8e03ff3f647494012e18bcdc8f33f4de42 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /GUI.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 'GUI.h')
-rw-r--r--GUI.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/GUI.h b/GUI.h
deleted file mode 100644
index fe306ba..0000000
--- a/GUI.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#pragma once
-
-#include "common.h"
-
-void ScreenToPoint(int x,int y,int &x1, int &y1, int &z1);
-void pointToScreen(int *inx, int *iny, int inz);
-Crd2D WorldBlockToScreen(int32_t x, int32_t y, int32_t z);
-Crd2D LocalBlockToScreen(int32_t x, int32_t y, int32_t z);
-void DrawMinimap(BITMAP* target);
-void paintboard();
-
-BITMAP* getImgFile(int index);
-void flushImgFiles();
-//returns index into getImgFile. Will only create new bitmaps when needed
-int loadImgFile(char* filename);
-void DrawSpriteFromSheet( int spriteNum, BITMAP* target, BITMAP* spriteSheet, int x, int y);
-BITMAP* load_bitmap_withWarning(char* path);
-void DrawSpriteIndexOverlay(int i);
-void DoSpriteIndexOverlay();
-void loadGraphicsFromDisk();
-void destroyGraphics();
-void saveScreenshot();
-
-extern WorldSegment* viewedSegment;//current, loaded
-extern int DisplayedSegmentX;
-extern int DisplayedSegmentY;
-extern int DisplayedSegmentZ;
-extern int DisplayedRotation;
-
-extern int MiniMapTopLeftX;
-extern int MiniMapTopLeftY;
-extern int MiniMapBottomRightX;
-extern int MiniMapBottomRightY;
-extern int MiniMapSegmentWidth;
-extern int MiniMapSegmentHeight;
-extern double oneBlockInPixels;
-
-
-extern BITMAP* IMGObjectSheet;
-extern BITMAP* IMGCreatureSheet;
-extern BITMAP* IMGRampSheet;
-
-extern Crd2D debugCursor;