Files
PlanetFleet/gameObjectListbox.h
devZoGok 15856bd6fe updated map file output script
bugfix for showing wrong units in map editor listboxes
2025-07-27 16:20:56 +03:00

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