map editing screen accessible using the new GUI subsystem

This commit is contained in:
devZoGok
2023-07-01 17:28:33 +03:00
parent 0c3c6b712f
commit 4ee08f1c49
19 changed files with 313 additions and 43 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef EXPORT_BUTTON_H
#define EXPORT_BUTTON_H
#include <button.h>
namespace battleship{
class ExportButton : public vb01Gui::Button{
public:
ExportButton(vb01::Vector2 pos, vb01::Vector2 size);
void onClick();
};
}
#endif