mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-07 01:35:29 -04:00
a6f059827b
* Game ABI / headers refactoring * Delete dusk/imgui.h
13 lines
312 B
C++
13 lines
312 B
C++
#pragma once
|
|
|
|
namespace dusk::touch_camera {
|
|
|
|
constexpr float YAW_DEGREES_PER_DP = 0.34f;
|
|
constexpr float PITCH_DEGREES_PER_DP = 0.22f;
|
|
|
|
void add_delta(float yaw_dp, float pitch_dp) noexcept;
|
|
bool consume_delta(float& yaw_dp, float& pitch_dp) noexcept;
|
|
void clear() noexcept;
|
|
|
|
} // namespace dusk::touch_camera
|