slimecing

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

CollisionEvent.cs (253B)


      1 using Slimecing.Events;
      2 using UnityEngine;
      3 
      4 namespace Slimecing.SOEventSystem.Events
      5 {
      6     [CreateAssetMenu (fileName = "New Collision Event", menuName = "Game Events/Collision Event")]
      7     public class CollisionEvent : BaseGameEvent<Collision> { }
      8 }