Files
beyond/Assets/ThirdParty/Procedural Worlds/Gaia/Scripts/Utils/GaiaStopwatchDataset.cs
2024-11-20 15:21:28 +01:00

12 lines
251 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Gaia
{
public class GaiaStopwatchDataset : MonoBehaviour
{
public List<GaiaStopWatchEvent> m_events = new List<GaiaStopWatchEvent>();
}
}