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 System;
5using osu.Framework.Platform;
6
7namespace osu.Framework.Android
8{
9 public class AndroidStorage : NativeStorage
10 {
11 public AndroidStorage(string path, GameHost host)
12 : base(path, host)
13 {
14 }
15
16 public override void OpenPathInNativeExplorer(string path)
17 {
18 //Not needed now.
19 throw new NotImplementedException();
20 }
21 }
22}