DragonECS/test/SharedData.cs
2023-03-12 20:45:18 +08:00

17 lines
297 B
C#

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