A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using osu.Framework.Platform;
5
6namespace osu.Framework.iOS
7{
8 public class IOSStorage : NativeStorage
9 {
10 public IOSStorage(string path, IOSGameHost host = null)
11 : base(path, host)
12 {
13 }
14 }
15}