20 lines
295 B
C++
20 lines
295 B
C++
// Copyright (c) Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_IOS
|
|
|
|
#include "../Base/GameBase.h"
|
|
|
|
/// <summary>
|
|
/// The game class implementation for iOS platform.
|
|
/// </summary>
|
|
/// <seealso cref="Game" />
|
|
class iOSGame : public GameBase
|
|
{
|
|
};
|
|
|
|
typedef iOSGame Game;
|
|
|
|
#endif
|