stk-code_catmod/lib/irrlicht/source/Irrlicht/CIrrDeviceiOS.h

25 lines
553 B
C
Raw Normal View History

2019-07-13 01:44:03 -04:00
// Copyright (C) 2002-2008 Nikolaus Gebhardt
// Copyright (C) 2008 Redshift Software, Inc.
// Copyright (C) 2012-2015 Patryk Nadrowski
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __C_IRR_DEVICE_IOS_H_INCLUDED__
#define __C_IRR_DEVICE_IOS_H_INCLUDED__
#include "IrrCompileConfig.h"
2019-07-23 13:36:21 -04:00
#include <string>
2019-07-13 01:44:03 -04:00
namespace irr
{
2020-06-10 23:40:25 -04:00
namespace CIrrDeviceiOS
{
std::string getSystemLanguageCode();
void openURLiOS(const char* url);
void debugPrint(const char* line);
2019-07-13 01:44:03 -04:00
}
2020-06-10 23:40:25 -04:00
};
2019-07-13 01:44:03 -04:00
#endif