Direction.cs 114 B

1234567891011
  1. using System;
  2. namespace AnimationOrTween
  3. {
  4. public enum Direction
  5. {
  6. Reverse = -1,
  7. Toggle,
  8. Forward
  9. }
  10. }