ControlState.cs 130 B

1234567891011
  1. using System;
  2. namespace LYFZ.OtherExpansion.SkinClass
  3. {
  4. public enum ControlState
  5. {
  6. Normal,
  7. Hover,
  8. Pressed,
  9. Focused
  10. }
  11. }