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