diff options
author | chai <chaifix@163.com> | 2020-10-15 19:05:22 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-10-15 19:05:22 +0800 |
commit | f049177e20a276049c61edbad631c1b2bbdd5706 (patch) | |
tree | 7d1a1cd9b690a5d9a8b9a65554a191d6ec769601 /Assets/Plugins/AdvancedInspector/Interface/ICopy.cs | |
parent | 6990a0d1fbdcbbf404f40713363ac1a148c8840a (diff) |
-advanced inspector
+odin
Diffstat (limited to 'Assets/Plugins/AdvancedInspector/Interface/ICopy.cs')
-rw-r--r-- | Assets/Plugins/AdvancedInspector/Interface/ICopy.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Assets/Plugins/AdvancedInspector/Interface/ICopy.cs b/Assets/Plugins/AdvancedInspector/Interface/ICopy.cs deleted file mode 100644 index d3584276..00000000 --- a/Assets/Plugins/AdvancedInspector/Interface/ICopy.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace AdvancedInspector -{ - /// <summary> - /// Give an object the power to handle it's own copying over an target destination. - /// </summary> - public interface ICopy - { - /// <summary> - /// Should return a copy of itself. The overriden destination object is passed in case important fields are not to be replaced. - /// </summary> - object Copy(object destination); - } -} |