mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
18 lines
370 B
C++
18 lines
370 B
C++
#ifndef UNIT_LISTBOX_H
|
|
#define UNIT_LISTBOX_H
|
|
|
|
#include <listbox.h>
|
|
|
|
namespace battleship{
|
|
class GameObjectListbox : public vb01Gui::Listbox{
|
|
public:
|
|
GameObjectListbox(bool, vb01::Vector3, vb01::Vector2, std::vector<std::string>, std::vector<int>, int, std::string);
|
|
void onClose();
|
|
private:
|
|
bool unitListbox;
|
|
std::vector<int> gameObjIds;
|
|
};
|
|
}
|
|
|
|
#endif
|