DragonECS/test/SharedData.cs

15 lines
248 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
2023-03-12 20:45:18 +08:00
using UnityEngine;
namespace DCFApixels.DragonECS
{
2023-03-12 20:45:18 +08:00
[Serializable]
public class SharedData
{
2023-03-12 20:45:18 +08:00
public Transform view1;
public Transform view2;
}
}