Blamite Game Engine - API  00406.12.10.23.1457.blamite
The API for the Blamite Game Engine.
dataref.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
6 
7 #ifdef BLAM_EXPORTS
8 #define BLAM_EXT_API __declspec(dllexport)
9 #else
10 #define BLAM_EXT_API __declspec(dllimport)
11 #endif
12 
20 {
21 private:
22  bool view_raw = true;
23 
24 public:
25  DataReferenceField(std::string _display_name, std::string _extra_info);
26 
27  std::string GetFieldXMLString(int offset);
28  void ShowImPropertyControl();
29 };
BlamTagClassField.h
BlamTagClassField::GetFieldXMLString
virtual std::string GetFieldXMLString(int offset)
Generates a string representing an XML node associated with this tag field, used for generating plugi...
Definition: BlamTagClassField.cpp:32
DataReferenceField
Class representing a data reference, or dataref for short.
Definition: dataref.h:19
BlamTagClassField
Base class representing a plugin field.
Definition: BlamTagClassField.h:28
BLAM_EXT_API
#define BLAM_EXT_API
Definition: dataref.h:10
BlamTagClassField::ShowImPropertyControl
virtual void ShowImPropertyControl()
Shows a set of ImGUI controls representing the tag field.
Definition: BlamTagClassField.cpp:22