8 lines
180 B
C#
8 lines
180 B
C#
using System.Collections.Generic;
|
|
|
|
namespace RoamingBees.Particles.Catchup;
|
|
|
|
public interface IBeeSpawnCatchup
|
|
{
|
|
IEnumerable<BeeSpawnPacket> ActiveBeesPackets { get; }
|
|
} |