Remove unused interfaces
All checks were successful
Build (Pflib Net) TeamCity build finished
MANDATORY: Build project (Pflib Net) TeamCity build finished

This commit is contained in:
Malachy Byrne 2024-06-15 00:39:33 +01:00
parent 7e0ddceb2c
commit 9b3ef32b98
Signed by: malmal200
GPG Key ID: EC21443030A655D9
3 changed files with 4 additions and 8 deletions

View File

@ -1,7 +1,6 @@
using System.Collections.Generic;
using pflib_net.characters.internals.proficiencies;
using pflib_net.characters.internals.stats;
using pflib_net.conditions;
namespace pflib_net.characters;
@ -11,7 +10,6 @@ public class PlayerCharacter : ICharacter
private Stats Stats { get; set; }
private int Level { get; set; }
private ArmorProficiency ArmorProficiency { get; }
private HashSet<ICondition> _conditions = new();
public PlayerCharacter(int hp, Stats stats, int level, ArmorProficiency armorProficiency)
{

View File

@ -1,6 +0,0 @@
namespace pflib_net.conditions;
public interface ICondition
{
}

View File

@ -7,4 +7,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="conditions\" />
</ItemGroup>
</Project>