28 lines
		
	
	
		
			420 B
		
	
	
	
		
			Haxe
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			420 B
		
	
	
	
		
			Haxe
		
	
	
	
	
	
| package kha;
 | |
| 
 | |
| class DisplayImpl {
 | |
| 	public static function count(): Int {
 | |
| 		return 1;
 | |
| 	}
 | |
| 
 | |
| 	public static function width(index: Int): Int {
 | |
| 		return -1;
 | |
| 	}
 | |
| 
 | |
| 	public static function height(index: Int): Int {
 | |
| 		return -1;
 | |
| 	}
 | |
| 
 | |
| 	public static function x(index: Int): Int {
 | |
| 		return -1;
 | |
| 	}
 | |
| 
 | |
| 	public static function y(index: Int): Int {
 | |
| 		return -1;
 | |
| 	}
 | |
| 
 | |
| 	public static function isPrimary(index: Int): Bool {
 | |
| 		return true;
 | |
| 	}
 | |
| }
 |