Add initial juice stream editing

This commit is contained in:
ekrctb
2021-07-19 22:15:35 +09:00
parent 6d49165664
commit 8cc1630655
5 changed files with 352 additions and 2 deletions

View File

@ -0,0 +1,18 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Catch.Objects;
#nullable enable
namespace osu.Game.Rulesets.Catch.Edit.Blueprints.Components
{
public class VertexState
{
public bool IsSelected { get; set; }
public bool IsFixed { get; set; }
public JuiceStreamPathVertex VertexBeforeChange { get; set; }
}
}