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
+3
View File
@@ -1,5 +1,6 @@
package control;
import command.RiderSelectCommand;
import command.CloseDrawerCommand;
import command.LoadRidersCommand;
import command.OpenDrawerCommand;
@@ -10,6 +11,7 @@ class AppController extends FrontController {
public static final LOAD_RIDERS_EVENT = "loadRidersEvent";
public static final OPEN_DRAWER_EVENT = "openDrawerEvent";
public static final CLOSE_DRAWER_EVENT = "closeDrawerEvent";
public static final RIDER_SELECT_EVENT = "riderSelect";
public function new() {
@@ -17,5 +19,6 @@ class AppController extends FrontController {
addCommand(AppController.LOAD_RIDERS_EVENT, LoadRidersCommand);
addCommand(AppController.OPEN_DRAWER_EVENT, OpenDrawerCommand);
addCommand(AppController.CLOSE_DRAWER_EVENT, CloseDrawerCommand);
addCommand(AppController.RIDER_SELECT_EVENT, RiderSelectCommand);
}
}