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