8 lines
214 B
Haxe
8 lines
214 B
Haxe
package system.windows.media;
|
|
|
|
@:native("System.Windows.Media.DrawingContext")
|
|
extern class DrawingContext {
|
|
public function PushTransform(transform: MatrixTransform): Void;
|
|
public function Pop(): Void;
|
|
}
|