mirror of
https://github.com/tiennm99/godot.git
synced 2026-07-20 16:19:47 +00:00
9 lines
142 B
C++
9 lines
142 B
C++
#ifndef EDITOR_SCALE_H
|
|
#define EDITOR_SCALE_H
|
|
|
|
|
|
bool editor_is_hidpi();
|
|
|
|
#define EDSCALE (editor_is_hidpi() ? 2 : 1)
|
|
#endif // EDITOR_SCALE_H
|