Private
Public Access
1
0
Files
OrekiWoofsBeehives/RoamingBees/RoamingBees/Particles/Catchup/IParticleCatchup.cs
2026-03-11 02:01:27 +01:00

8 lines
180 B
C#

using System.Collections.Generic;
namespace RoamingBees.Particles.Catchup;
public interface IBeeSpawnCatchup
{
IEnumerable<BeeSpawnPacket> ActiveBeesPackets { get; }
}