This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IFSMProperties | |
{ | |
function get referringAction():String; | |
function get currentStateName():String; | |
function get transitionPhase():String; | |
function get isTransitioning():Boolean; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MacroCommandSignal extends Signal | |
{ | |
[Inject] | |
public var signalCommandMap:ISignalCommandMap; | |
public function MacroCommandSignal() | |
{ | |
// allows a payload Object to be injected into each command | |
super( Object ); |
NewerOlder