mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-15 03:20:30 +00:00
25 lines
723 B
C#
25 lines
723 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Platform;
|
|
using UIKit;
|
|
|
|
namespace osu.Framework.iOS
|
|
{
|
|
/// <summary>
|
|
/// Interface representation of the game window on the iOS platform.
|
|
/// </summary>
|
|
public interface IIOSWindow : IWindow
|
|
{
|
|
/// <summary>
|
|
/// The underlying <see cref="UIWindow"/> associated to this window.
|
|
/// </summary>
|
|
UIWindow UIWindow { get; }
|
|
|
|
/// <summary>
|
|
/// The <see cref="UIViewController"/> presenting this window's content.
|
|
/// </summary>
|
|
UIViewController ViewController { get; }
|
|
}
|
|
}
|