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,29 @@
|
||||
#ifndef _INCLUDED_ASW_HOLDOUT_SPAWNER_H
|
||||
#define _INCLUDED_ASW_HOLDOUT_SPAWNER_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "asw_base_spawner.h"
|
||||
|
||||
//===============================================
|
||||
// A spawner used in holdout mode.
|
||||
//===============================================
|
||||
class CASW_Holdout_Spawner : public CASW_Base_Spawner
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS( CASW_Holdout_Spawner, CASW_Base_Spawner );
|
||||
DECLARE_DATADESC();
|
||||
|
||||
CASW_Holdout_Spawner();
|
||||
virtual ~CASW_Holdout_Spawner();
|
||||
|
||||
virtual void Spawn();
|
||||
|
||||
Class_T Classify() { return (Class_T) CLASS_ASW_HOLDOUT_SPAWNER; }
|
||||
|
||||
protected:
|
||||
|
||||
};
|
||||
|
||||
#endif /* _INCLUDED_ASW_HOLDOUT_SPAWNER_H */
|
||||
Reference in New Issue
Block a user