File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
app/src/main/java/org/metatrans/apps/bagatur Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 22
33
44import org .metatrans .apps .bagatur .cfg .difficulty .ConfigurationUtils_Difficulty ;
5+ import org .metatrans .apps .bagatur .model .UserData_Bagatur ;
56import org .metatrans .commons .chess .cfg .rules .ConfigurationUtils_Bagatur_AllRules ;
67import org .metatrans .commons .chess .logic .game .GameDataUtils ;
78import org .metatrans .commons .chess .model .UserSettings ;
89import org .metatrans .commons .model .GameData_Base ;
10+ import org .metatrans .commons .model .UserData_Base ;
911
1012
1113public abstract class Application_BagaturEngine extends org .metatrans .commons .chess .app .Application_Chess_BaseImpl {
@@ -18,6 +20,13 @@ protected void loadCustomConfigurations() {
1820 }
1921
2022
23+ @ Override
24+ protected UserData_Base createUserDataObject () {
25+
26+ return new UserData_Bagatur ();
27+ }
28+
29+
2130 @ Override
2231 public GameData_Base createGameDataObject () {
2332
Original file line number Diff line number Diff line change 1+ package org .metatrans .apps .bagatur .model ;
2+
3+
4+ import org .metatrans .commons .model .UserData_Base ;
5+
6+ import java .io .Serializable ;
7+
8+
9+ public class UserData_Bagatur extends UserData_Base implements Serializable {
10+
11+
12+ private static final long serialVersionUID = -3795153573995173779L ;
13+
14+
15+ public UserData_Bagatur () {
16+
17+ super ();
18+ }
19+ }
You can’t perform that action at this time.
0 commit comments