Class Suggestions
Provides methods to generate suggestions for adding various components to plugins.
public class Suggestions
- Inheritance
-
Suggestions
- Inherited Members
- Extension Methods
Methods
ConsiderDatabase(string)
Suggests adding a database to a plugin's OnInitialize
method.
public static string ConsiderDatabase(string databaseName)
Parameters
databaseName
stringThe name of the database to suggest.
Returns
- string
A suggestion string for adding the database.
ConsiderEngine(string)
Suggests adding an engine to a plugin's OnInitialize
method.
public static string ConsiderEngine(string engineName)
Parameters
engineName
stringThe name of the engine to suggest.
Returns
- string
A suggestion string for adding the engine.
ConsiderProcessor(string)
Suggests adding a processor to a plugin's OnInitialize
method.
public static string ConsiderProcessor(string processorName)
Parameters
processorName
stringThe name of the processor to suggest.
Returns
- string
A suggestion string for adding the processor.
ConsiderSystem(string)
Suggests adding a system to a plugin's OnInitialize
method.
public static string ConsiderSystem(string systemName)
Parameters
systemName
stringThe name of the system to suggest.
Returns
- string
A suggestion string for adding the system.