diff --git a/uFrame.ECS/Source/Designer/Editor/Templates/SystemTemplate.cs b/uFrame.ECS/Source/Designer/Editor/Templates/SystemTemplate.cs index 7611b00..071764d 100644 --- a/uFrame.ECS/Source/Designer/Editor/Templates/SystemTemplate.cs +++ b/uFrame.ECS/Source/Designer/Editor/Templates/SystemTemplate.cs @@ -61,7 +61,7 @@ public void Setup() public class _ITEM_TYPE_AS_INTERFACE: _ITEMTYPE_ { - public override string TheType(TemplateContext context) + public string TheType(TemplateContext context) { var item = context.Item as IMappingsConnectable; if (item != null) diff --git a/uFrame.ECS/Source/Designer/Editor/Templates/TemplateConfigs.cs b/uFrame.ECS/Source/Designer/Editor/Templates/TemplateConfigs.cs index 971a505..8713ea9 100644 --- a/uFrame.ECS/Source/Designer/Editor/Templates/TemplateConfigs.cs +++ b/uFrame.ECS/Source/Designer/Editor/Templates/TemplateConfigs.cs @@ -1311,7 +1311,7 @@ public string Filename public class _CONTEXTITEM_ : _ITEMTYPE_ { - public override string TheType(TemplateContext context) + public string TheType(TemplateContext context) { return base.TheType(context); } @@ -1319,7 +1319,7 @@ public override string TheType(TemplateContext context) public class _CONTEXT_ : _ITEMTYPE_ { - public override string TheType(TemplateContext context) + public string TheType(TemplateContext context) { return base.TheType(context) + "Context"; }