Blamite Game Engine - blam!  00296.01.12.21.0102.blamite
The core library for the Blamite Game Engine.
utilities.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Windows.h>
4 #include <string>
5 
6 #ifndef BLAM
7 #define BLAM
8 #endif
9 
10 namespace Blam
11 {
15  namespace Utils
16  {
23  BLAM std::pair<float, float> GetSystemDpi();
24 
31  BLAM std::pair<float, float> GetEngineDpi();
32  }
33 }
Blam
Namespace surrounding all major engine components.
Definition: blam_api.h:18
Blam::Utils::GetEngineDpi
BLAM std::pair< float, float > GetEngineDpi()
Retrieve the game engine's DPI.
Definition: utilities.cpp:17
Blam::Utils::GetSystemDpi
BLAM std::pair< float, float > GetSystemDpi()
Retrieve the Windows system DPI.
Definition: utilities.cpp:6
BLAM
#define BLAM
Definition: utilities.h:7