TODO RiderList line 92

This commit is contained in:
2025-12-08 21:47:19 +01:00
parent fbd94c52c0
commit d0ab28556b
5 changed files with 48 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
package command;
import model.Constants;
import com.adobe.cairngorm.commands.ICommand;
import com.adobe.cairngorm.control.CairngormEvent;
import model.AppModelLocator;
import t9.util.ColorTraces.*;
class RiderSelectCommand implements ICommand {
private var model = AppModelLocator.getInstance();
public function execute(e:CairngormEvent):Void {
trace(e.data);
}
}