12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UHFPS.Runtime
|
|
{
|
|
[Serializable]
|
|
public sealed class ObjectReference
|
|
{
|
|
public string GUID;
|
|
public GameObject Object;
|
|
}
|
|
} |