DragonECS/test/SharedData.cs

17 lines
297 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}