mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
16 lines
284 B
C++
16 lines
284 B
C++
#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
|