mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
12 lines
206 B
C
12 lines
206 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
#ifndef CCS_H
|
||
|
#define CCS_H
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
void CCS_Init();
|
||
|
void CCS_Shutdown();
|
||
|
void CCS_Tick( float flTime );
|
||
|
|
||
|
#endif // CCS_H
|