Records.cs 203 B

12345678910
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace VEngine.Editor.Builds
  4. {
  5. public class Records : ScriptableObject
  6. {
  7. public List<Record> data = new List<Record>();
  8. }
  9. }