19 lines
300 B
C++
19 lines
300 B
C++
#pragma once
|
|
|
|
namespace Nuake
|
|
{
|
|
class FGDPointEntity;
|
|
}
|
|
|
|
class TrenchbroomConfiguratorWindow
|
|
{
|
|
public:
|
|
TrenchbroomConfiguratorWindow() = default;
|
|
~TrenchbroomConfiguratorWindow() = default;
|
|
|
|
void Update();
|
|
void Draw();
|
|
void DrawPrefabItem(const Nuake::FGDPointEntity& pointEntity);
|
|
private:
|
|
|
|
}; |