trouble-in-terror-town/Assets/Scripts/GameEventSystem/GameEventDataSet.cs
2022-02-09 21:05:18 +01:00

13 lines
No EOL
288 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using MyBox;
[CreateAssetMenu(menuName = "OpenCodeBox/Game Events/Game Event Data Set")]
public class GameEventDataSet : ScriptableObject
{
public List<GameEventData> gameEventData;
}