integrated with previous

This commit is contained in:
Mohamed Nouffer
2023-06-09 15:55:59 +05:30
parent a358f65853
commit 2cd685b65e
23 changed files with 1950 additions and 397 deletions

View File

@ -0,0 +1,12 @@
import 'package:get/get.dart';
import 'package:rogapp/common/state/game/game_controller.dart';
import 'package:rogapp/screens/auth/controller/auth_controller.dart';
class GameBinding extends Bindings{
@override
void dependencies() {
Get.lazyPut<AuthController>(() => AuthController());
Get.put<GameController>(GameController());
}
}