7 lines
159 B
C#
7 lines
159 B
C#
namespace RoamingBees.Particles;
|
|
|
|
public interface IBeeSpawnHandler
|
|
{
|
|
void HandleBeeParticleSpawn(BeeSpawnPacket packet, bool catchup = false);
|
|
}
|