This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
game-project/source/world/screen.d

9 lines
133 B
D
Raw Permalink Normal View History

2023-10-02 13:03:07 +00:00
module world.screen;
public ScreenT Screen;
struct ScreenT {
float x,y;
float width, height;
int px_width, px_height;
}