Files
osu-framework/osu.Framework.iOS/IOSStorage.cs
2023-06-24 10:36:45 +09:00

18 lines
406 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.
#nullable disable
using osu.Framework.Platform;
namespace osu.Framework.iOS
{
public class IOSStorage : NativeStorage
{
public IOSStorage(string path, IOSGameHost host = null)
: base(path, host)
{
}
}
}