You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
JavaScript
21 lines
495 B
JavaScript
//=============================================================================
|
|
/*:
|
|
* @plugindesc Test Plugins
|
|
* @author SaltedFish
|
|
*
|
|
* @param test1
|
|
* @type actor
|
|
*/
|
|
var Imported = Imported || {};
|
|
Imported.SF_TestPlugins = true;
|
|
|
|
var SF_Plugins = SF_Plugins || {};
|
|
SF_Plugins.SF_TestPlugins = SF_Plugins.SF_TestPlugins || {};
|
|
SF_Plugins.SF_TestPlugins.version = 1.0;
|
|
|
|
sc = Scene_Title.prototype.create;
|
|
Scene_Title.prototype.create = function () {
|
|
sc.call(this);
|
|
|
|
}
|