1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 00:23:01 +08:00

Mark constant identifier as non-localisable

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2023-02-20 19:48:39 +09:00 committed by GitHub
parent 0ddda018fd
commit 1629c86b5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ namespace osu.Game.Skinning
[Serializable]
public class SkinLayoutInfo
{
private const string global_identifier = "global";
private const string global_identifier = @"global";
public IEnumerable<SerialisedDrawableInfo> AllDrawables => DrawableInfo.Values.SelectMany(v => v);