STATE.cs 226 B

1234567891011121314
  1. namespace OpenVIII.Movie
  2. {
  3. public enum State
  4. {
  5. Load = 0,
  6. Clear = 1,
  7. StartPlay = 2,
  8. Playing = 3,
  9. Paused = 4,
  10. Finished = 5,
  11. Return = 6,
  12. Reset = 7
  13. }
  14. }