mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
16 lines
234 B
C++
16 lines
234 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;
|
|
}; |