Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add BLU Aspect.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jul 18, 2023
1 parent da894b2 commit b1a4a41
Show file tree
Hide file tree
Showing 5 changed files with 217 additions and 147 deletions.
7 changes: 5 additions & 2 deletions RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ public partial class BaseAction : IBaseAction
{
internal static CanUseOption OtherOption { get; set; } = CanUseOption.None;

readonly Action _action;
/// <summary>
/// The action itself.
/// </summary>
protected readonly Action _action;
readonly ActionOption _option;

/// <summary>
Expand Down Expand Up @@ -68,7 +71,7 @@ public partial class BaseAction : IBaseAction
/// <summary>
/// Description about this action.
/// </summary>
public string Description => string.Empty;
public virtual string Description => string.Empty;

/// <summary>
/// Is Enabled.
Expand Down
16 changes: 16 additions & 0 deletions RotationSolver.Basic/Data/Aspect.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace RotationSolver.Basic.Data;

/// <summary>
/// Action Aspect.
/// </summary>
public enum Aspect : byte
{
Fire = 1,
Ice = 2,
Wind = 3,
Earth = 4,
Lighting = 5,
Water = 6,
Piercing = 7,
None = 7,
}
Loading

0 comments on commit b1a4a41

Please sign in to comment.