sqwarmed/sdk_src/game/server/swarm/asw_tutorial_spawning.h

24 lines
498 B
C++

#ifndef _INCLUDED_ASW_TUTORIAL_SPAWNING_H
#define _INCLUDED_ASW_TUTORIAL_SPAWNING_H
#ifdef _WIN32
#pragma once
#endif
class CASW_TutorialStartPoint : public CPointEntity
{
public:
DECLARE_DATADESC();
DECLARE_CLASS( CASW_TutorialStartPoint, CPointEntity );
private:
int m_iMarineSlot;
int m_iSaveStage;
public:
static CASW_TutorialStartPoint* GetTutorialStartPoint(int iMarineSlot);
static int GetTutorialSaveStage();
};
#endif // _INCLUDED_ASW_TUTORIAL_SPAWNING_H