source-engine/game/server/tf2base/tf_objective_resource.h
2022-08-10 19:52:28 +03:00

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