RoundStyle.cs 165 B

123456789101112131415
  1. using System;
  2. namespace LYFZ.OtherExpansion.SkinClass
  3. {
  4. public enum RoundStyle
  5. {
  6. None,
  7. All,
  8. Left,
  9. Right,
  10. Top,
  11. Bottom,
  12. BottomLeft,
  13. BottomRight
  14. }
  15. }