13 lines
193 B
C#
13 lines
193 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace AlicizaX
|
|
{
|
|
[Serializable]
|
|
public sealed class ObjectReference
|
|
{
|
|
public string GUID;
|
|
public GameObject Object;
|
|
}
|
|
}
|