com.alicizax.unity.framework/Runtime/ABase/Structs/ObjectReference.cs

13 lines
193 B
C#
Raw Normal View History

2025-10-11 15:18:09 +08:00
using System;
using UnityEngine;
namespace AlicizaX
{
[Serializable]
public sealed class ObjectReference
{
public string GUID;
public GameObject Object;
}
}