Added basic structure for game implementation

This commit is contained in:
2025-11-12 11:41:06 +01:00
parent 25c7b37df3
commit a922f24150
12 changed files with 1924 additions and 90 deletions

View File

@@ -0,0 +1,10 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'player_game_dao.dart';
// ignore_for_file: type=lint
mixin _$PlayerGameDaoMixin on DatabaseAccessor<AppDatabase> {
$PlayerTableTable get playerTable => attachedDatabase.playerTable;
$GroupTableTable get groupTable => attachedDatabase.groupTable;
$PlayerGameTableTable get playerGameTable => attachedDatabase.playerGameTable;
}