Add missing licence header

This commit is contained in:
Dean Herbert 2018-03-21 12:29:44 +09:00
parent ee73bd4568
commit ccdd11d7b2
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,7 @@
using System;
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Drawing.Imaging;
using System.IO;
using osu.Framework.Allocation;
@ -43,7 +46,10 @@ public bool OnPressed(GlobalAction action)
return false;
}
public bool OnReleased(GlobalAction action) => false;
public bool OnReleased(GlobalAction action)
{
return false;
}
public async void TakeScreenshotAsync()
{