This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using Sirenix.OdinInspector;
using UnityEngine;
using VOID.Generic.Objects.Unit;
namespace VOID.Generic.Requirement
{
[TypeRegistryItem("Level")]
[Serializable]
public class RequirementLevel : IUnitRequirement
{
[SerializeField]
[MinValue(1)]
private int _value;
public bool Check(UnitObject unit)
{
return unit.unitLevel.level >= _value;
}
}
}