Changes
This tutorial explains how to provide any kind of preconfigured {{UBIK}} data (system definitions) using a custom plugin.
<!-- DO NOT REMOVE THIS -->{{Template:HowTo/Begin}}<!-- DO NOT REMOVE THIS -->
[[File:Systemdefinitions.drawio.png]]
= Create a new plugin =
public class MySystemDefinitions_V110 : MySystemDefinitions_V100
{
#region Constants
public static readonly Version VERSION = new Version(1, 1, 0, 0);
#endregion Constants
#region Version
public override Version Version
{
get
{
return VERSION;
}
}
#endregion Version
// ...
* [[HowTo:Create_UBIK_Module|Create your own module]]
[[Category:How-To|Provide system definitions with a custom plugin]][[Category:Module|Provide system definitions with a custom plugin]]