// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace osu.Framework.Platform { public interface IAndroidGraphicsSurface { /// /// Returns JNI environment handle. /// IntPtr JniEnvHandle { get; } /// /// Android Surface handle. /// /// https://developer.android.com/reference/android/view/Surface.html IntPtr SurfaceHandle { get; } } }