Added Time

This commit is contained in:
2026-01-17 17:08:22 +01:00
parent 53c7d564d7
commit 6b3e034cf5
8 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
namespace TSE
{
class ITimeInterface
{
public:
virtual float GetTotalEllapsedTime() = 0;
virtual ~ITimeInterface() = default;
};
} // namespace TSE