azsteal-SmartSpawnController/src/Patches/BotSpawnerPatches.IWaveDataWrapper.cs
2021-11-05 02:46:37 +01:00

18 lines
398 B
C#

using EFT;
namespace astealz.SmartSpawnController.Patches
{
partial class BotSpawnerPatches
{
interface IWaveDataWrapper
{
bool IsNewWave { get; }
bool IsBoss { get; }
EPlayerSide Side { get; }
WildSpawnType WildSpawnType { get; }
string ZoneName { get; set; }
int Count { get; }
}
}
}