Browse Source

Update Type.hx

Mark Knol 9 years ago
parent
commit
f889418c63
1 changed files with 15 additions and 15 deletions
  1. 15 15
      std/Type.hx

+ 15 - 15
std/Type.hx

@@ -20,21 +20,6 @@
  * DEALINGS IN THE SOFTWARE.
  */
 
-/**
-	The diffent possible runtime types of a value.
-**/
-enum ValueType {
-	TNull;
-	TInt;
-	TFloat;
-	TBool;
-	TObject;
-	TFunction;
-	TClass( c : Class<Dynamic> );
-	TEnum( e : Enum<Dynamic> );
-	TUnknown;
-}
-
 /**
 	The haxe Reflection API allows retrieval of type information at runtime.
 
@@ -301,3 +286,18 @@ extern class Type {
 
 }
 
+
+/**
+	The different possible runtime types of a value.
+**/
+enum ValueType {
+	TNull;
+	TInt;
+	TFloat;
+	TBool;
+	TObject;
+	TFunction;
+	TClass( c : Class<Dynamic> );
+	TEnum( e : Enum<Dynamic> );
+	TUnknown;
+}