PF-1: Add basic classes #1

Merged
malmal200 merged 5 commits from PF-1-add-basics into master 2024-06-15 02:05:33 +02:00
3 changed files with 4 additions and 8 deletions
Showing only changes of commit 9b3ef32b98 - Show all commits

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>