summaryrefslogtreecommitdiff
path: root/prge_window.c
blob: 444866c36d2c6daf665031c17b6ecd33f041d5c1 (plain)
1
2
3
4
5
6
7
8
9
10
Window window_init(S32 width, S32 height, Str8 name)
{
	Window	wnd;

	wnd.width = width;
	wnd.height = height;
	wnd.name = name;

	return wnd;
}