diff options
Diffstat (limited to 'Assets/Plugins/AdvancedInspector/Core/RangeInt.cs')
-rw-r--r-- | Assets/Plugins/AdvancedInspector/Core/RangeInt.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Assets/Plugins/AdvancedInspector/Core/RangeInt.cs b/Assets/Plugins/AdvancedInspector/Core/RangeInt.cs deleted file mode 100644 index bfe55c58..00000000 --- a/Assets/Plugins/AdvancedInspector/Core/RangeInt.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace AdvancedInspector -{ - [Serializable] - public struct RangeInt - { - public int min; - public int max; - - public RangeInt(int min, int max) - { - this.min = min; - this.max = max; - } - } -}
\ No newline at end of file |