class MAGES::InteractionSystemModule::InteractorInfo¶
Overview¶
Stores info about the interactor name and type. More…
class InteractorInfo { public: // properties string Name; string Type; // methods InteractorInfo(string name, string type); };
Detailed Documentation¶
Stores info about the interactor name and type.
Properties¶
string Name
Gets or sets the identifier name to be used when using the TryAddInteractor method.
string Type
Gets or sets the type in string of the actual class for this interactor.
Methods¶
InteractorInfo(string name, string type)
Initializes a new instance of the InteractorInfo class.
Parameters:
name |
The identifier name of the interactor. |
type |
The actual type of its class in string. |