modinfo.c 864 B

1234567891011121314151617181920212223
  1. class ModInfo
  2. {
  3. proto owned string GetName();
  4. proto owned string GetPicture();
  5. proto owned string GetLogo();
  6. proto owned string GetLogoSmall();
  7. proto owned string GetLogoOver(); //hover-over logo variant
  8. proto owned string GetTooltip();
  9. proto owned string GetOverview(); //description
  10. proto owned string GetAction();
  11. proto owned string GetAuthor();
  12. proto owned string GetVersion();
  13. proto bool GetDefault();
  14. proto bool GetIsDLC();
  15. proto bool GetIsOwned();
  16. proto void GoToStore();
  17. static const string DEFAULT_PICTURE = "Gui/textures/modlogo_default_co.edds";
  18. static const string DEFAULT_LOGO = "Gui/textures/modlogo_default_co.edds";
  19. static const string DEFAULT_LOGO_SMALL = "Gui/textures/modlogo_default_co.edds";
  20. static const string DEFAULT_LOGO_OVER = "Gui/textures/modlogo_default_hover_co.edds";
  21. static const string DEFAULT_OVERVIEW = "";
  22. }