webDeploy.conf 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. class WebDeploymentWindows
  3. {
  4. public static $plugin = "<plugin>";
  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 = "<company>";
  10. public static $companyKey = "<companyKey>";
  11. public static $productName = "<productName>";
  12. public static $version = "<version>";
  13. public static $description = "<description>";
  14. // Before you should specify a unique MIME type for your game
  15. public static $mimeType = "<mimeType>";
  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 = "<axWebGameLibUUID>";
  22. // Other UUID used by registry
  23. public static $axAppUUID = "<axAppUUID>";
  24. public static $axWebGameUUID = "<axWebGameUUID>";
  25. public static $axWebGameCtrlUUID = "<axWebGameCtrlUUID>";
  26. };
  27. ?>