Files
dilemmaker/source/propertygrid.h
Raimon Zamora a0a7a78061 - [NEW] Ajustat el color del propertygrid
- [NEW] Seccions en el propertygrid
- [NEW] JA es mostren les propietats bàsiques de les habitacions
2025-11-18 22:49:30 +01:00

11 lines
208 B
C++

#pragma once
#include <string>
namespace propertygrid
{
void start();
std::string stringProperty(std::string label, std::string value);
void sectionProperty(std::string label);
void end();
}