DragonECS/test/SharedData.cs
2023-03-13 04:32:24 +08:00

15 lines
248 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace DCFApixels.DragonECS
{
[Serializable]
public class SharedData
{
public Transform view1;
public Transform view2;
}
}