LNXSDK/Kha/Backends/Empty/kha/DisplayImpl.hx

28 lines
420 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
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;
}
}