mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +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;
|
|
}
|
|
}
|