-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_timer.h
More file actions
43 lines (38 loc) · 2.51 KB
/
Copy path_timer.h
File metadata and controls
43 lines (38 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
* O P E N T S
*******************************************************************************
* SPDX-License-Identifier: GPL-3.0-or-later
* Copyright 2025 Electronic Arts Inc.
* Copyright 2026 OpenTS contributors
*
* Contains material derived from Electronic Arts source code.
* Modified by OpenTS contributors, 2026.
* EA's GPLv3 Section 7 additional terms and supplemental warranty
* disclaimers apply; see LICENSE.md.
******************************************************************************/
/***********************************************************************************************
*** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
***********************************************************************************************
* *
* Project Name : Command & Conquer *
* *
* $Archive:: /Commando/Library/_Timer.h $*
* *
* $Author:: Greg_h $*
* *
* $Modtime:: 7/22/97 11:37a $*
* *
* $Revision:: 1 $*
* *
*---------------------------------------------------------------------------------------------*
* Functions: *
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#pragma once
#include "mstimer.h"
#include "stimer.h"
#include "timer.h"
class SystemTimerClass;
class MillisecondSystemTimerClass;
extern CDTimerClass<SystemTimerClass> FrameTimer;
extern CDTimerClass<MillisecondSystemTimerClass> NetFrameTimer;
extern TTimerClass<SystemTimerClass> TickCount;