Firstborn/Assets/RPG Creation Kit/Scripts/ScriptsTemplates/RPGCreationKit__ResultScrip...
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

19 lines
340 B
Plaintext

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
namespace RPGCreationKit.Game.ResultScripts
{
public class #SCRIPTNAME# : ResultScript
{
void Start()
{
// Your code here
// Destroy the script
Destroy(this);
}
}
}