mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 21:55:58 +00:00
13 lines
273 B
C
13 lines
273 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace diablo2 {
|
||
|
namespace utils {
|
||
|
class screen {
|
||
|
public:
|
||
|
static void screen_to_world(int32_t sx, int32_t sy, int32_t& wx, int32_t& wy);
|
||
|
static void world_to_screen(int32_t wx, int32_t wy, int32_t& sx, int32_t& sy);
|
||
|
};
|
||
|
}
|
||
|
}
|