mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-02 19:11:00 +00:00
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
<?php
|
|
|
|
class WebDeploymentOSX
|
|
{
|
|
|
|
// setup in project.conf
|
|
public static $safariPluginName = "";
|
|
|
|
public static $identifier = "com.mygamecompany.emptytemplateplugin";
|
|
|
|
public static $description = "Empty Template Plugin";
|
|
|
|
public static $version = "1.0";
|
|
|
|
// Before you should specify a unique MIME type for your game
|
|
public static $mimeType = "x-emptytemplateplugin";
|
|
|
|
};
|
|
|
|
?>
|