21 lines
544 B
Plaintext
21 lines
544 B
Plaintext
#ifndef _mr_property_editors_
|
|
#define _mr_property_editors_
|
|
|
|
#includeoptional "${LavishScript.HomeDirectory}/Scripts/mr/auto_quest/property_editors/npc_dialog_properties.iss"
|
|
|
|
variable(global) NPCDialogPropertiesController MRNPCDialogPropertiesController
|
|
|
|
objectdef PropertyEditors
|
|
{
|
|
static method GetPropertyEditor( string stepType )
|
|
{
|
|
switch ( stepType )
|
|
{
|
|
case MRNPCDialogPropertiesController.StepType:
|
|
return MRNPCDialogPropertiesController;
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
#endif |