Files

15 lines
254 B
C#
Raw Permalink Normal View History

2023-07-01 21:07:29 -05:00
using System;
using System.Runtime.InteropServices;
using UnityEngine;
namespace SmartPoint.AssetAssistant
{
[Serializable]
public struct ReferenceObject
{
2023-07-14 14:42:33 -05:00
public UnityEngine.GameObject asset;
2023-07-01 21:07:29 -05:00
public string path;
}
}