mirror of
https://github.com/leozide/leocad
synced 2024-12-28 22:23:35 +01:00
12 lines
177 B
C++
12 lines
177 B
C++
#ifndef _GLOBALS_H_
|
|
#define _GLOBALS_H_
|
|
|
|
#include "console.h"
|
|
|
|
class Messenger;
|
|
extern Messenger* messenger;
|
|
|
|
class MainWnd;
|
|
extern MainWnd* main_window;
|
|
|
|
#endif // _GLOBALS_H_
|