12 lines
251 B
C#
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>();
|
|
}
|
|
}
|