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.
28 lines
718 B
28 lines
718 B
5 years ago
|
//========= 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
|