slimecing

a fighting game featuring slimes and swords
Log | Files | Refs | README

TestEvents.cs (232B)


      1 using UnityEngine;
      2 
      3 namespace Slimecing.SOEventSystem
      4 {
      5     public class TestEvents : MonoBehaviour
      6     {
      7         public void TestThisEvent(object thing)
      8         {
      9             Debug.Log("Here is the " + thing);
     10         }
     11     }
     12 }