Files
secretsplash/Runtime/PSXObjectExporter.cs

14 lines
212 B
C#

using UnityEngine;
namespace PSXSplash.Runtime
{
public class PSXObjectExporter : MonoBehaviour
{
public void Export()
{
Debug.Log($"Export: {this.name}");
}
}
}