Exemple #1
0
 public GameDependency(int arrowcount, int rountcount, int playercount, SQLBase db) : base(arrowcount, rountcount, playercount, db)
 {
     this.arrowCount  = arrowcount;
     this.roundCount  = rountcount;
     this.playerCount = playercount;
     MyBaseSQLite     = db;
 }
Exemple #2
0
 public GameSetting(int arrowcount, int roundcount, int playercount, SQLBase db)
 {
     this.arrowCount  = arrowcount;
     this.roundCount  = roundcount;
     this.playerCount = playercount;
     myBaseSqlite     = db;
 }
Exemple #3
0
 public Players(SQLBase db)
 {
     this.dbase = db;
 }
Exemple #4
0
 public GameSetting(SQLBase db)
 {
 }
Exemple #5
0
 public Settings(ref SQLBase db)
 {
     Mysqlitebase = db;
 }