diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common.h b/src/common.h index ee6ceadd..46c22c20 100644 --- a/src/common.h +++ b/src/common.h @@ -76,13 +76,6 @@ extern void **rwengine; #define HUD_FROM_RIGHT(a) (SCREEN_WIDTH - HUD_STRETCH_X(a)) #define HUD_FROM_BOTTOM(a) (SCREEN_HEIGHT - HUD_STRETCH_Y(a)) -struct GlobalScene -{ - RpWorld *world; - RwCamera *camera; -}; -extern GlobalScene &Scene; - #include "math/Vector.h" #include "math/Vector2D.h" #include "math/Matrix.h" @@ -136,10 +129,6 @@ inline float sq(float x) { return x*x; } int myrand(void); void mysrand(unsigned int seed); -extern uint8 work_buff[55000]; -extern char gString[256]; -extern wchar *gUString; - void re3_debug(char *format, ...); void re3_trace(const char *filename, unsigned int lineno, const char *func, char *format, ...); void re3_assert(const char *expr, const char *filename, unsigned int lineno, const char *func); |