959e80cf72
assets upload description.
19 lines
340 B
Plaintext
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);
|
|
}
|
|
}
|
|
} |