A game framework written with osu! in mind.
at master 18 lines 565 B view raw
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.IO; 5using osu.Framework.Graphics.Sprites; 6 7namespace osu.Framework.Graphics.UserInterface 8{ 9 public class BasicDirectorySelectorParentDirectory : BasicDirectorySelectorDirectory 10 { 11 protected override IconUsage? Icon => FontAwesome.Solid.Folder; 12 13 public BasicDirectorySelectorParentDirectory(DirectoryInfo directory) 14 : base(directory, "..") 15 { 16 } 17 } 18}