webDeploy.conf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. class WebDeploymentWindows
  3. {
  4. public static $plugin = "WebEmptyTemplate";
  5. //------ NP plugin settings
  6. // The plugin MUST begin with NP for Firefox to recognize it
  7. // setup in project.conf
  8. public static $npPluginName = "";
  9. public static $company = "My Game Company";
  10. public static $companyKey = "mygamecompany";
  11. public static $productName = "My Web Game";
  12. public static $version = "1.0";
  13. public static $description = "My Web Game Plugin";
  14. // Before you should specify a unique MIME type for your game
  15. public static $mimeType = "x-emptytemplateplugin";
  16. //------ ActiveX plugin settings
  17. // setup in project.conf
  18. public static $axPluginName = "";
  19. // Before shipping the UUID should be changed to unique numbers for your game
  20. // This UUID is used by CLSID in object tag in your site's html
  21. public static $axWebGameLibUUID = "D62D1B36-253D-4218-B033-5ACE0B42B8BF";
  22. // Other UUID used by registry
  23. public static $axAppUUID = "AB7615A3-A918-488B-B128-96DD62D0AE36";
  24. public static $axWebGameUUID = "5240D24D-FBCE-4AF2-99FC-4C7AD4318E91";
  25. public static $axWebGameCtrlUUID = "FC143328-E29C-4BC4-8C83-618FEB562532";
  26. };
  27. ?>