mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-09-01 15:09:19 +00:00
upload "kind" alien swarm
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
#ifndef _INCLUDED_ASW_INTRO_CONTROL_H
|
||||
#define _INCLUDED_ASW_INTRO_CONTROL_H
|
||||
#pragma once
|
||||
|
||||
#include "baseentity.h"
|
||||
|
||||
// Used by the intro to launch the campaign map once the intro is over
|
||||
|
||||
class CASW_Player;
|
||||
|
||||
class CASW_Intro_Control : public CLogicalEntity
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CASW_Intro_Control, CLogicalEntity );
|
||||
DECLARE_DATADESC();
|
||||
|
||||
void InputLaunchCampaignMap( inputdata_t &inputdata );
|
||||
void InputShowCredits( inputdata_t &inputdata );
|
||||
void InputShowCainMail( inputdata_t &inputdata );
|
||||
void InputCheckReconnect( inputdata_t &inputdata );
|
||||
void OnIntroStarted();
|
||||
void CheckReconnect();
|
||||
void LaunchCampaignMap();
|
||||
void PlayerSpawned(CASW_Player *pPlayer);
|
||||
virtual void Spawn();
|
||||
|
||||
bool m_bLaunchedCampaignMap;
|
||||
bool m_bShownCredits;
|
||||
COutputEvent m_IntroStarted;
|
||||
};
|
||||
|
||||
#endif /* _INCLUDED_ASW_INTRO_CONTROL_H */
|
||||
Reference in New Issue
Block a user