Elaztek Developer Hub
Blamite Game Engine - blam!  00310.02.05.21.0336.blamite
The core library for the Blamite Game Engine.
boolean.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../BlamPluginField.h"
4 
14 {
15 public:
16  BooleanField(std::string _display_name, std::string _extra_info);
17 
18  void ShowImPropertyControl();
19 
20  std::string GetFieldXMLString(int offset);
21 };
BooleanField
Class representing a boolean tag field.
Definition: boolean.h:13
BooleanField::GetFieldXMLString
std::string GetFieldXMLString(int offset)
Generates a string representing an XML node associated with this tag field, used for generating plugi...
Definition: boolean.cpp:25
BlamPluginField
Base class representing a plugin field.
Definition: BlamPluginField.h:49
BooleanField::ShowImPropertyControl
void ShowImPropertyControl()
Shows a set of ImGUI controls representing the tag field.
Definition: boolean.cpp:14
BooleanField::BooleanField
BooleanField(std::string _display_name, std::string _extra_info)
Definition: boolean.cpp:8