mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
19 lines
484 B
C++
19 lines
484 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v3 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#ifndef AZEROTHCORE_BANNER_H
|
|
#define AZEROTHCORE_BANNER_H
|
|
|
|
#include "Define.h"
|
|
|
|
namespace Acore
|
|
{
|
|
namespace Banner
|
|
{
|
|
void Show(char const* applicationName, void(*log)(char const* text), void(*logExtraInfo)());
|
|
}
|
|
}
|
|
|
|
#endif // AZEROTHCORE_BANNER_H
|