TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ ShowLisc()

void OSLiscences::ShowLisc ( std::string &  name,
std::string &  content,
int  id 
)
private

Definition at line 35 of file OSLiscences.cpp.

36{
37 bool state = ImGui::CollapsingHeader(("##LiscItem" + std::to_string(id)).c_str());
38 ImGui::SameLine();
39 ImGui::Text(name.c_str());
40
41 if (state)
42 {
43 ImGui::Text(content.c_str());
44 }
45}