com.alicizax.unity.framework/Runtime/ABase/Structs/ObjectReference.cs
2025-10-11 15:18:09 +08:00

13 lines
193 B
C#

using System;
using UnityEngine;
namespace AlicizaX
{
[Serializable]
public sealed class ObjectReference
{
public string GUID;
public GameObject Object;
}
}