Files
XRLib/Assets/Scripts/UVC/UI/Commands/ICommand.cs
2025-06-11 19:24:08 +09:00

8 lines
99 B
C#

namespace UVC.UI.Commands
{
public interface ICommand
{
void Execute();
}
}