BlockColor-Engine/src/porting_ios.h
2017-08-16 17:54:50 +03:00

20 lines
440 B
C++

#ifndef __PORTING__IOS_H__
#define __PORTING__IOS_H__
#ifndef __IOS__
#error This file should only be included on iOS
#endif
namespace porting {
void initializePathsiOS();
void copyAssets();
void setViewController(void *v);
void showInputDialog(const std::string &acceptButton, const std::string &hint,
const std::string &current, int editType);
int getInputDialogState();
std::string getInputDialogValue();
}
#endif