upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+29
View File
@@ -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 */