Alignment.cs 261 B

12345678910111213141516
  1. namespace InABox.Core
  2. {
  3. public enum Alignment
  4. {
  5. NotSet,
  6. TopLeft,
  7. TopCenter,
  8. TopRight,
  9. MiddleLeft,
  10. MiddleCenter,
  11. MiddleRight,
  12. BottomLeft,
  13. BottomCenter,
  14. BottomRight
  15. }
  16. }