Remove "default" prefix from naming

This commit is contained in:
Dean Herbert
2022-09-18 00:14:49 +09:00
parent 1c4e02fae8
commit 41e69fbca6
15 changed files with 28 additions and 28 deletions

View File

@ -30,7 +30,7 @@ namespace osu.Game.Tests.Visual
public abstract class SkinnableTestScene : OsuGridTestScene, IStorageResourceProvider
{
private Skin metricsSkin;
private Skin defaultSkinTriangles;
private Skin trianglesSkin;
private Skin specialSkin;
private Skin oldSkin;
@ -48,7 +48,7 @@ namespace osu.Game.Tests.Visual
var dllStore = new DllResourceStore(GetType().Assembly);
metricsSkin = new TestLegacySkin(new SkinInfo { Name = "metrics-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/metrics_skin"), this, true);
defaultSkinTriangles = new DefaultLegacySkin(this);
trianglesSkin = new DefaultLegacySkin(this);
specialSkin = new TestLegacySkin(new SkinInfo { Name = "special-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/special_skin"), this, true);
oldSkin = new TestLegacySkin(new SkinInfo { Name = "old-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/old_skin"), this, true);
}
@ -63,7 +63,7 @@ namespace osu.Game.Tests.Visual
Cell(0).Child = createProvider(null, creationFunction, beatmap);
Cell(1).Child = createProvider(metricsSkin, creationFunction, beatmap);
Cell(2).Child = createProvider(defaultSkinTriangles, creationFunction, beatmap);
Cell(2).Child = createProvider(trianglesSkin, creationFunction, beatmap);
Cell(3).Child = createProvider(specialSkin, creationFunction, beatmap);
Cell(4).Child = createProvider(oldSkin, creationFunction, beatmap);
}