summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs')
-rw-r--r--Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs b/Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs
deleted file mode 100644
index 44f67b2..0000000
--- a/Thronefall_1_57/Decompile/I2.Loc/LocalizeTargetDesc.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using UnityEngine;
-
-namespace I2.Loc;
-
-public abstract class LocalizeTargetDesc<T> : ILocalizeTargetDescriptor where T : ILocalizeTarget
-{
- public override ILocalizeTarget CreateTarget(Localize cmp)
- {
- return ScriptableObject.CreateInstance<T>();
- }
-
- public override Type GetTargetType()
- {
- return typeof(T);
- }
-}