binds to choose between unit states

This commit is contained in:
devZoGok
2024-02-16 15:22:54 +02:00
parent 2948be04ee
commit 8bc9961359
5 changed files with 38 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef MAP_LISTBOX_H
#define MAP_LISTBOX_H
#include <listbox.h>
namespace battleship{
class MapListbox : public vb01Gui::Listbox{
public:
MapListbox(vb01::Vector2, vb01::Vector2, std::vector<std::string>&, int, std::string, bool);
private:
void onClose();
};
}
#endif