mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
15 lines
248 B
C#
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;
|
|
}
|
|
}
|