mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-12 18:37:18 +00:00
28 lines
718 B
C
28 lines
718 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Holds the CEconExperiment
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef TFEXPERIMENT_H
|
||
|
#define TFEXPERIMENT_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "gcsdk/schemasharedobject.h"
|
||
|
|
||
|
//---------------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//---------------------------------------------------------------------------------
|
||
|
class CEconExperiment : public GCSDK::CSchemaSharedObject< CSchExperiment, k_EEconTypeExperiment >
|
||
|
{
|
||
|
#ifdef GC_DLL
|
||
|
DECLARE_CLASS_MEMPOOL( CEconExperiment );
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // TFEXPERIMENT_H
|