1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 17:45:34 +00:00
openmw/mscripts/guiscripts/module/gui.mn

12 lines
342 B
Text
Raw Normal View History

// GUI module. Only covers some very basic functions.
module gui;
// Later, we'll have singleton gui : Widget; with most of the
// functions defined in Widget.
native Widget loadLayout(char[] file);
native Widget text(char[] skin, int x, int y, int w, int h,
char[] layer);
native int getWidth();
native int getHeight();