1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Rename methods

This commit is contained in:
smoogipoo 2021-04-09 18:15:27 +09:00
parent 3b86f0eb2f
commit 90e243eea5

View File

@ -20,9 +20,9 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
{
}
public void AddSource(int userId, IClock source) => trackedData[userId] = new TrackedUserData(source);
public void AddClock(int userId, IClock source) => trackedData[userId] = new TrackedUserData(source);
public void RemoveSource(int userId, IClock source) => trackedData.Remove(userId);
public void RemoveClock(int userId, IClock source) => trackedData.Remove(userId);
protected override void OnIncomingFrames(int userId, FrameDataBundle bundle)
{