external lib

This commit is contained in:
2026-03-26 14:08:11 +01:00
parent 4315b709cb
commit 25b09b7c0d
6 changed files with 50 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
using PeopleVille.Equipment;
using PeopleVille.Persons;
namespace PeopleVille.Extension.Mod1;
public class Snake : IEquipment
{
public void Equip()
{
throw new NotImplementedException();
}
public void Unequip()
{
throw new NotImplementedException();
}
public void Use(Person person)
{
Console.WriteLine($"{person.Name} brugte en slange, lol");
}
}