mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 05:05:19 -05:00
12 lines
290 B
C++
12 lines
290 B
C++
#pragma once
|
|
|
|
#include <imgui.h>
|
|
|
|
namespace hex {
|
|
|
|
[[nodiscard]] float operator""_scaled(long double value);
|
|
[[nodiscard]] float operator""_scaled(unsigned long long value);
|
|
[[nodiscard]] ImVec2 scaled(const ImVec2 &vector);
|
|
[[nodiscard]] ImVec2 scaled(float x, float y);
|
|
|
|
} |