mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
30a99c22f1
* Reorganize ImGui menus * Fix crash_reporting.cpp * Update aurora
24 lines
511 B
C++
24 lines
511 B
C++
#ifndef DUSK_DUSK_H
|
|
#define DUSK_DUSK_H
|
|
|
|
#include <aurora/aurora.h>
|
|
|
|
#include "aurora/gfx.h"
|
|
|
|
extern AuroraInfo auroraInfo;
|
|
|
|
namespace dusk {
|
|
extern AuroraStats lastFrameAuroraStats;
|
|
extern float frameUsagePct;
|
|
}
|
|
|
|
constexpr u32 defaultWindowWidth = 608;
|
|
constexpr u32 defaultWindowHeight = 448;
|
|
|
|
constexpr u32 defaultAspectRatioW = 19;
|
|
constexpr u32 defaultAspectRatioH = 14;
|
|
|
|
static_assert(defaultWindowWidth / defaultAspectRatioW == defaultWindowHeight / defaultAspectRatioH);
|
|
|
|
#endif // DUSK_DUSK_H
|