mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
320 B
C++
17 lines
320 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>, int, std::string);
|
|
void onClose();
|
|
private:
|
|
bool unitListbox;
|
|
};
|
|
}
|
|
|
|
#endif
|