9 lines
133 B
D
9 lines
133 B
D
|
module world.screen;
|
||
|
|
||
|
public ScreenT Screen;
|
||
|
|
||
|
struct ScreenT {
|
||
|
float x,y;
|
||
|
float width, height;
|
||
|
int px_width, px_height;
|
||
|
}
|