DialogEvent.bf 267 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Beefy.widgets;
  5. namespace Beefy.events
  6. {
  7. public class DialogEvent : Event
  8. {
  9. public bool mCloseDialog;
  10. public ButtonWidget mButton;
  11. public String mResult;
  12. }
  13. }