/src/away3d/loaders/parsers/ParserDataFormat.as
http://github.com/away3d/away3d-core-fp11 · ActionScript · 20 lines · 8 code · 3 blank · 9 comment · 0 complexity · a1dc4ca3956ea37b5f37176835c5b6a8 MD5 · raw file
- package away3d.loaders.parsers
- {
-
- /**
- * An enumeration providing values to describe the data format of parsed data.
- */
- public class ParserDataFormat
- {
- /**
- * Describes the format of a binary file.
- */
- public static const BINARY:String = "binary";
-
- /**
- * Describes the format of a plain text file.
- */
- public static const PLAIN_TEXT:String = "plainText";
- }
- }