mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 21:57:24 +09:00
Fix a few warnings.
This commit is contained in:
parent
7dcf2c6269
commit
a69c5b4fc0
@ -12,7 +12,7 @@ namespace osu.Game.GameModes.Menu
|
|||||||
{
|
{
|
||||||
public override string Name => @"Main Menu";
|
public override string Name => @"Main Menu";
|
||||||
|
|
||||||
private AudioTrackBass bgm;
|
//private AudioTrackBass bgm;
|
||||||
|
|
||||||
public override void Load()
|
public override void Load()
|
||||||
{
|
{
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.Security;
|
using System.Security;
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
|
|
||||||
@ -35,6 +36,8 @@ namespace osu.Game.Online.API
|
|||||||
|
|
||||||
internal string Get(Representation request = Representation.Raw)
|
internal string Get(Representation request = Representation.Raw)
|
||||||
{
|
{
|
||||||
|
Debug.Assert(representation == request);
|
||||||
|
|
||||||
switch (request)
|
switch (request)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
|
@ -22,7 +22,7 @@ namespace osu.Game.Online.Chat
|
|||||||
|
|
||||||
public List<Message> Messages = new List<Message>();
|
public List<Message> Messages = new List<Message>();
|
||||||
|
|
||||||
internal bool Joined;
|
//internal bool Joined;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Channel()
|
public Channel()
|
||||||
|
@ -21,10 +21,10 @@ namespace osu.Game.Online.Chat
|
|||||||
public DateTime Timestamp;
|
public DateTime Timestamp;
|
||||||
|
|
||||||
[JsonProperty(@"content")]
|
[JsonProperty(@"content")]
|
||||||
internal string Content;
|
public string Content;
|
||||||
|
|
||||||
[JsonProperty(@"sender")]
|
[JsonProperty(@"sender")]
|
||||||
internal string User;
|
public string User;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Message()
|
public Message()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user