Unofficial CardLife revival project, pronounced like "celery"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
300B

  1. using User;
  2. namespace CLre.API.App
  3. {
  4. public struct SetupEventArgs {}
  5. public struct GameReady{}
  6. public struct GameExit{}
  7. public struct MenuReady{}
  8. public struct GameJoin
  9. {
  10. public bool Success;
  11. public SerializedAccountInfo Data;
  12. }
  13. }