port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
struct __declspec(novtable) ITimeline
{
virtual ~ITimeline() {};
virtual double get_DeltaTime() = 0;
virtual double get_RealTime() = 0;
virtual double get_DemoTime() = 0;
virtual void set_SpeedAndDirection(double argValue = 1.0) = 0;
virtual double get_SpeedAndDirection() = 0;
virtual void Advance(double argSeconds) = 0;
};