Files
Justin Marshall 6685b5d51a Revert "Merge branch 'Isometric-Dev' into master"
This reverts commit ae0648fccc, reversing
changes made to d7243e8265.
2020-08-06 15:50:30 -07:00

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;
};