forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
15
Kha/Sources/kha/DisplayMode.hx
Normal file
15
Kha/Sources/kha/DisplayMode.hx
Normal file
@ -0,0 +1,15 @@
|
||||
package kha;
|
||||
|
||||
class DisplayMode {
|
||||
public var width: Int;
|
||||
public var height: Int;
|
||||
public var frequency: Int;
|
||||
public var bitsPerPixel: Int;
|
||||
|
||||
public function new(width: Int, height: Int, frequency: Int, bitsPerPixel: Int) {
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.frequency = frequency;
|
||||
this.bitsPerPixel = bitsPerPixel;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user