14 lines
237 B
Plaintext
14 lines
237 B
Plaintext
|
using UnityEngine;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class #CLASSNAME#
|
||
|
{
|
||
|
#CONSTCONTENT#
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class #CLASSNAME#s
|
||
|
{
|
||
|
public List<#CLASSNAME#> #LISTNAME# = new List<#CLASSNAME#>();
|
||
|
}
|