summaryrefslogtreecommitdiff
path: root/ZAPD/ZRoom/Commands/SetEntranceList.h
diff options
context:
space:
mode:
Diffstat (limited to 'ZAPD/ZRoom/Commands/SetEntranceList.h')
-rw-r--r--ZAPD/ZRoom/Commands/SetEntranceList.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ZAPD/ZRoom/Commands/SetEntranceList.h b/ZAPD/ZRoom/Commands/SetEntranceList.h
index e13e9a8..832232e 100644
--- a/ZAPD/ZRoom/Commands/SetEntranceList.h
+++ b/ZAPD/ZRoom/Commands/SetEntranceList.h
@@ -2,13 +2,13 @@
#include "ZRoom/ZRoomCommand.h"
-class EntranceEntry
+class Spawn
{
public:
uint8_t startPositionIndex;
uint8_t roomToLoad;
- EntranceEntry(const std::vector<uint8_t>& rawData, uint32_t rawDataIndex);
+ Spawn(const std::vector<uint8_t>& rawData, uint32_t rawDataIndex);
std::string GetBodySourceCode() const;
};
@@ -16,7 +16,7 @@ public:
class SetEntranceList : public ZRoomCommand
{
public:
- std::vector<EntranceEntry> entrances;
+ std::vector<Spawn> entrances;
SetEntranceList(ZFile* nParent);