/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

  1. package away3d.loaders.parsers
  2. {
  3. /**
  4. * An enumeration providing values to describe the data format of parsed data.
  5. */
  6. public class ParserDataFormat
  7. {
  8. /**
  9. * Describes the format of a binary file.
  10. */
  11. public static const BINARY:String = "binary";
  12. /**
  13. * Describes the format of a plain text file.
  14. */
  15. public static const PLAIN_TEXT:String = "plainText";
  16. }
  17. }