mirror of
https://github.com/vcmi/vcmi.git
synced 2025-05-19 22:23:31 +02:00
20 lines
355 B
C++
20 lines
355 B
C++
|
/*
|
||
|
* prepare_p.h, part of VCMI engine
|
||
|
*
|
||
|
* Authors: listed in file AUTHORS in main folder
|
||
|
*
|
||
|
* License: GNU General Public License v2.0 or later
|
||
|
* Full text of license available in license.txt file, in main folder
|
||
|
*
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
namespace launcher
|
||
|
{
|
||
|
#ifdef VCMI_ANDROID
|
||
|
void prepareAndroid();
|
||
|
#elif defined(VCMI_IOS)
|
||
|
void prepareIos();
|
||
|
#endif
|
||
|
}
|