mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 16:10:54 +02:00
18 lines
265 B
C++
18 lines
265 B
C++
// sidebareditor.h
|
|
//
|
|
|
|
struct Image_t;
|
|
|
|
class SidebarEditor {
|
|
public:
|
|
void init(void);
|
|
void draw_it(void);
|
|
|
|
int mainmenu_selection;
|
|
private:
|
|
Image_t* LoadEditorImage(const char* name);
|
|
private:
|
|
Image_t* metalplt;
|
|
};
|
|
|
|
extern bool Debug_LockScroll; |