2018-08-19 09:46:58 +02:00
|
|
|
#pragma once
|
2020-05-28 15:17:34 +02:00
|
|
|
#include "box.h"
|
2018-08-19 09:46:58 +02:00
|
|
|
|
2020-05-30 15:55:23 +02:00
|
|
|
constexpr auto NUM_SLOTS = 32;
|
2020-01-11 11:43:42 +01:00
|
|
|
extern int SlotsUsed;
|
2020-07-11 21:16:04 +02:00
|
|
|
extern std::vector<CREATURE_INFO> BaddieSlots;
|
2018-08-19 09:46:58 +02:00
|
|
|
|
2019-12-02 14:49:19 +01:00
|
|
|
void InitialiseLOTarray(int allocMem);
|
|
|
|
int EnableBaddieAI(short itemNum, int always);
|
|
|
|
void InitialiseSlot(short itemNum, short slot);
|
|
|
|
void DisableBaddieAI(short itemNumber);
|
|
|
|
void ClearLOT(LOT_INFO* LOT);
|
|
|
|
void CreateZone(ITEM_INFO* item);
|