From f9826537124b3d5a41b8cc8f203c9134b6a5f9f8 Mon Sep 17 00:00:00 2001 From: Serhii Yolkin Date: Wed, 8 Nov 2017 03:18:59 +0100 Subject: [PATCH] match with core code changes --- uFrame.ECS/Source/Designer/Editor/Templates/SystemTemplate.cs | 2 +- .../Source/Designer/Editor/Templates/TemplateConfigs.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"; }