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.
23 lines
492 B
23 lines
492 B
//============ Copyright (c) Valve Corporation, All rights reserved. ============ |
|
// |
|
// |
|
// |
|
//=============================================================================== |
|
#ifndef ASW_NPCS_H |
|
#define ASW_NPCS_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
class CMapLayout; |
|
class CLayoutSystem; |
|
|
|
class CASWMissionChooserNPCs |
|
{ |
|
public: |
|
static void InitFixedSpawns( CLayoutSystem *pLayoutSystem, CMapLayout *pLayout ); |
|
static void PushEncountersApart( CMapLayout *pLayout ); |
|
}; |
|
|
|
#endif // ASW_NPCS_H |
|
|
|
|