mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 06:56:38 +00:00 
			
		
		
		
	- various gui-work - begun binding the GUI into Monster script - updated to latest Monster source (0.11 alpha) git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@87 ea6a568a-9f4f-0410-981a-c910a81bb256
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // 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();
 |