Elaztek Developer Hub
Blamite Game Engine - blam!  00310.02.05.21.0336.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 
12 {
13 public:
14  AsciiField(std::string _display_name, std::string _extra_info);
15 
16  void ShowImPropertyControl();
17 
18  std::string GetFieldXMLString(int offset);
19 };
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:11
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