Firstborn/Assets/RPG Creation Kit/Scripts/ScriptsTemplates/RPGCreationKit__ResultScrip...

19 lines
340 B
Plaintext
Raw Normal View History

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);
}
}
}