WXMC/.svn/pristine/a3/a3506973fcec13b46fa4a29b63f450acc3461674.svn-base
2024-12-04 16:18:46 +08:00

17 lines
331 B
Plaintext

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PHomeProjectileCollideEventHandler : PHomeEventHandlerBase
{
public virtual void HandleEvent (ProjectileCollideContext context)
{
}
public virtual void HandleDestroyEvent(ProjectileDestroyContext context)
{
}
}