mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-02-23 06:31:01 +00:00
12 lines
188 B
Haxe
12 lines
188 B
Haxe
package gui;
|
|
|
|
@:publicFields
|
|
class GuiEvent {
|
|
var sender:GuiControl;
|
|
var propagate:Bool;
|
|
|
|
public function new(sender:GuiControl) {
|
|
this.sender = sender;
|
|
this.propagate = true;
|
|
}
|
|
}
|