mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 04:08:20 +00:00
13 lines
186 B
C
13 lines
186 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <conncpp.hpp>
|
||
|
|
||
|
#include "GameDatabase.h"
|
||
|
|
||
|
namespace Database {
|
||
|
void Connect();
|
||
|
GameDatabase* Get();
|
||
|
void Destroy(std::string source = "");
|
||
|
};
|