This commit is contained in:
@@ -32,6 +32,11 @@ public interface IHitData
|
||||
/// </summary>
|
||||
uint Damage { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets set to true after the hit has fully executed, and has not been interrupted by anything.
|
||||
/// </summary>
|
||||
bool HasExecuted { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The type of the hit. Null if the move is typeless.
|
||||
/// </summary>
|
||||
@@ -78,6 +83,9 @@ public record HitData : IHitData
|
||||
/// <inheritdoc />
|
||||
public uint Damage { get; internal set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public bool HasExecuted { get; internal set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public TypeIdentifier? Type { get; internal set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user