ShowDialogueEventData.cs 597 B

12345678910111213141516171819202122232425
  1. using Core.Utility.Event;
  2. namespace Common.Utility.CombatEvent
  3. {
  4. public class ShowDialogueEventData : EventDataBasic<ShowDialogueEventData>
  5. {
  6. public enum MessageShowType
  7. {
  8. Default,
  9. Verbatim
  10. }
  11. public string[] dialogueMessaga;
  12. public MessageShowType messageShowType;
  13. public System.Action finish;
  14. public string[] icon;
  15. protected override void ProDispose()
  16. {
  17. dialogueMessaga = null;
  18. messageShowType = MessageShowType.Default;
  19. finish = null;
  20. }
  21. }
  22. }