[TASK] Content fixes

This commit is contained in:
2019-08-26 00:51:03 +02:00
parent b4543142de
commit dc140068d6
24 changed files with 433 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
namespace EasyButtons
{
public class CustomEditorButtonsExample : MonoBehaviour
{
[Button("Custom Editor Example")]
private void SayHello()
{
Debug.Log("Hello from custom editor");
}
}
}