Use PlayMode instead of GameMode

This commit is contained in:
Drew DeVault 2016-10-04 14:34:42 -04:00
parent 005dc9e8cb
commit 768c3bc31e
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
using System;
using osu.Game.Beatmaps;
using osu.Game.GameModes.Play;
using SQLite;
namespace osu.Game.Database
@ -15,7 +15,7 @@ public class BeatmapMetadata
public string Author { get; set; }
public string Source { get; set; }
public string Tags { get; set; }
public GameMode Mode { get; set; }
public PlayMode Mode { get; set; }
public int PreviewTime { get; set; }
public string AudioFile { get; set; }
public string BackgroundFile { get; set; }