update check condition

This commit is contained in:
VDH
2026-02-27 18:18:51 +07:00
parent a10cbb23b6
commit 5de380fd05
14 changed files with 186 additions and 1026 deletions
@@ -0,0 +1,14 @@
using UnityEngine;
using EditorAttributes;
namespace BrewMonster.Scripts
{
public class TestButtonAttribute : MonoBehaviour
{
[Button("Test Button")]
public void TestMethod()
{
Debug.Log("Test button clicked!");
}
}
}