mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
20 lines
398 B
C
20 lines
398 B
C
|
#ifndef _GLOBALS_H_
|
||
|
#define _GLOBALS_H_
|
||
|
|
||
|
#include "defines.h"
|
||
|
#include "typedefs.h"
|
||
|
#include "console.h"
|
||
|
|
||
|
class Messenger;
|
||
|
extern Messenger* messenger;
|
||
|
|
||
|
class MainWnd;
|
||
|
extern MainWnd* main_window;
|
||
|
|
||
|
extern unsigned char FlatColorArray[31][3];
|
||
|
extern unsigned char ColorArray[31][4];
|
||
|
extern const char* colornames[LC_MAXCOLORS];
|
||
|
extern const char* altcolornames[LC_MAXCOLORS];
|
||
|
|
||
|
#endif // _GLOBALS_H_
|