mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 03:38:20 +00:00
17 lines
253 B
C++
17 lines
253 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Databases/DatabaseBase.h"
|
|
|
|
class dConfig;
|
|
|
|
class Database {
|
|
public:
|
|
static DatabaseBase* Connection;
|
|
static eConnectionTypes ConnectionType;
|
|
|
|
static void Connect(dConfig* config);
|
|
static void Destroy();
|
|
};
|