mirror of
https://github.com/ApfelTeeSaft/WV-Core.git
synced 2026-08-27 12:03:33 +00:00
20 lines
369 B
C++
20 lines
369 B
C++
#pragma once
|
|
|
|
namespace WillowVox
|
|
{
|
|
class Renderer
|
|
{
|
|
public:
|
|
static void Init();
|
|
static void PostWindowInit();
|
|
static void Shutdown();
|
|
|
|
static float GetTime();
|
|
|
|
static void SetVsync(bool enabled);
|
|
static bool VysncEnabled() { return m_vsyncEnabled; }
|
|
|
|
private:
|
|
static bool m_vsyncEnabled;
|
|
};
|
|
} |