blob: 90e575f7716cb34d5f5d4e327b346db2b526ac17 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef EDITOR_SCALE_H
#define EDITOR_SCALE_H
void editor_set_scale(float p_scale);
float editor_get_scale();
#define EDSCALE (editor_get_scale())
#endif // EDITOR_SCALE_H
|