NotificationTypes.cs 200 B

12345678910111213
  1. using UnityEngine;
  2. using System.Collections;
  3. public enum NotificationType {
  4. RollerActive,
  5. StartTimer,
  6. RollerDeactive,
  7. GameOver,
  8. GameStart,
  9. SetMale,
  10. SetFemale,
  11. GameWin
  12. };