From 5b244367ee321bd454a4704e4a64209df6aaea4c Mon Sep 17 00:00:00 2001 From: Jorolf Date: Sun, 21 May 2017 20:29:05 +0200 Subject: [PATCH 1/2] allow for solutions were the osu repository isn't at the solution level --- osu.Game/osu.Game.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index ee906caa9b..acc6fd4abe 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -430,11 +430,11 @@ - + {c76bf5b3-985e-4d39-95fe-97c9c879b83a} osu.Framework - + {d9a367c9-4c1a-489f-9b05-a0cea2b53b58} osu.Game.Resources From e58ffbd87dc20424268d5e201e4d88a82183b43f Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Mon, 22 May 2017 09:46:34 +0900 Subject: [PATCH 2/2] Remove Note Siblings. --- osu.Game.Rulesets.Mania/Objects/ManiaHitObject.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/osu.Game.Rulesets.Mania/Objects/ManiaHitObject.cs b/osu.Game.Rulesets.Mania/Objects/ManiaHitObject.cs index f6eb4aea2c..93aaa94f45 100644 --- a/osu.Game.Rulesets.Mania/Objects/ManiaHitObject.cs +++ b/osu.Game.Rulesets.Mania/Objects/ManiaHitObject.cs @@ -9,11 +9,5 @@ namespace osu.Game.Rulesets.Mania.Objects public abstract class ManiaHitObject : HitObject, IHasColumn { public int Column { get; set; } - - /// - /// The number of other that start at - /// the same time as this hit object. - /// - public int Siblings { get; set; } } }