2022-02-05 16:25:58 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace TJAPlayer3
|
|
|
|
|
{
|
|
|
|
|
class Databases
|
|
|
|
|
{
|
|
|
|
|
public void tDatabases()
|
|
|
|
|
{
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//DBPuchichara = new DBPuchichara();
|
2022-02-06 10:34:48 +01:00
|
|
|
|
DBUnlockables = new DBUnlockables();
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//DBCharacter = new DBCharacter();
|
2022-05-05 07:19:47 +02:00
|
|
|
|
DBCDN = new DBCDN();
|
2022-02-06 10:34:48 +01:00
|
|
|
|
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//DBPuchichara.tDBPuchichara();
|
2022-02-06 10:34:48 +01:00
|
|
|
|
DBUnlockables.tDBUnlockables();
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//DBCharacter.tDBCharacter();
|
2022-05-05 07:19:47 +02:00
|
|
|
|
DBCDN.tDBCDN();
|
2022-02-05 16:25:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//public DBPuchichara DBPuchichara;
|
2022-02-06 10:34:48 +01:00
|
|
|
|
public DBUnlockables DBUnlockables;
|
2022-06-10 16:58:56 +02:00
|
|
|
|
//public DBCharacter DBCharacter;
|
2022-05-05 07:19:47 +02:00
|
|
|
|
public DBCDN DBCDN;
|
2022-02-05 16:25:58 +01:00
|
|
|
|
}
|
|
|
|
|
}
|