TorqueScript
0.2
|
Struct describing a tree of console object initializations. More...
#include <executionscope.hpp>
Public Member Functions | |
ObjectInstantiationDescriptor (const std::string typeName, const std::string &name) | |
Constructs a new ObjectInstantiationDescriptor. More... | |
Public Attributes | |
std::string | mName |
The name to assign the new console object. | |
std::string | mTypeName |
The typename to instantiate the console object as. | |
std::vector< ObjectInstantiationDescriptor > | mChildren |
All children of this object. These will not be initialized until the parent is initialized. | |
std::map< std::string, StoredValue > | mFieldAssignments |
All resolved field names mapped to the values to set. | |
Struct describing a tree of console object initializations.
|
inline |
Constructs a new ObjectInstantiationDescriptor.
typeName | The console object type to inititalize. |
name | The name of the new object. |