mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-09 15:30:41 +00:00
20 lines
438 B
Text
20 lines
438 B
Text
<?php
|
|
|
|
class WebDeploymentOSX
|
|
{
|
|
|
|
// setup in project.conf
|
|
public static $safariPluginName = "";
|
|
|
|
public static $identifier = "com.mygamecompany.fullphysxtemplateplugin";
|
|
|
|
public static $description = "Full PhysX Template Plugin";
|
|
|
|
public static $version = "1.0";
|
|
|
|
// Before you should specify a unique MIME type for your game
|
|
public static $mimeType = "x-fullphysxtemplateplugin";
|
|
|
|
};
|
|
|
|
?>
|