summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs')
-rw-r--r--Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs b/Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs
deleted file mode 100644
index 5c2bb55..0000000
--- a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/ICombinedObject.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System.Collections.Generic;
-
-namespace NGS.MeshFusionPro;
-
-public interface ICombinedObject
-{
- IReadOnlyList<ICombinedObjectPart> Parts { get; }
-
- void Combine(IEnumerable<ICombineSource> sources);
-}
-public interface ICombinedObject<TCombinedPart, TCombinedSource> : ICombinedObject where TCombinedPart : ICombinedObjectPart where TCombinedSource : ICombineSource
-{
- new IReadOnlyList<TCombinedPart> Parts { get; }
-
- void Combine(IEnumerable<TCombinedSource> sources);
-}