mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-06 08:35:05 +00:00
29 lines
695 B
C++
29 lines
695 B
C++
//========= Copyright © 1996-2006, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: DOD's objective resource, transmits all objective states to players
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef TF_OBJECTIVE_RESOURCE_H
|
|
#define TF_OBJECTIVE_RESOURCE_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "tf_shareddefs.h"
|
|
#include "team_objectiveresource.h"
|
|
|
|
class CTFObjectiveResource : public CBaseTeamObjectiveResource
|
|
{
|
|
DECLARE_CLASS( CTFObjectiveResource, CBaseTeamObjectiveResource );
|
|
public:
|
|
DECLARE_SERVERCLASS();
|
|
DECLARE_DATADESC();
|
|
|
|
virtual void Spawn( void );
|
|
};
|
|
|
|
#endif // TF_OBJECTIVE_RESOURCE_H
|
|
|