mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
23 lines
425 B
C
23 lines
425 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef CBASE_H
|
||
|
#define CBASE_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
// Shared header file
|
||
|
#include "basetypes.h"
|
||
|
#include "tier1/strtools.h"
|
||
|
#include "vstdlib/random.h"
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
extern IUniformRandomStream *random;
|
||
|
#endif
|
||
|
|
||
|
#endif // CBASE_H
|