Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
475 B

#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