ShowDialogueEventData.cs 567 B

123456789101112131415161718192021222324
  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. protected override void ProDispose()
  15. {
  16. dialogueMessaga = null;
  17. messageShowType = MessageShowType.Default;
  18. finish = null;
  19. }
  20. }
  21. }