You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
454 B
26 lines
454 B
using System.Collections.Generic;
|
|
|
|
namespace Babushka.scripts.CSharp.Common.Fight.ActionDetails;
|
|
|
|
public class MinigameActionDetail : FighterAction.FighterActionDetail
|
|
{
|
|
// settings
|
|
|
|
|
|
// result
|
|
public List<int>? damageHits = null;
|
|
|
|
public MinigameActionDetail()
|
|
{
|
|
}
|
|
|
|
public override bool DetailComplete()
|
|
{
|
|
return damageHits != null;
|
|
}
|
|
|
|
public void ResetResult()
|
|
{
|
|
damageHits = null;
|
|
}
|
|
} |