source-engine/game/server/swarm/asw_tutorial_spawning.h
2023-10-03 17:23:56 +03:00

24 lines
475 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