Files
Studio/Assets/Panel_ComponentViewer.cs

20 lines
354 B
C#
Raw Permalink Normal View History

2025-02-19 17:24:26 +09:00
using UnityEngine;
namespace XED
{
2025-02-19 17:43:14 +09:00
public class Panel_ComponentViewer : MonoBehaviour
2025-02-19 17:24:26 +09:00
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}