external lib
This commit is contained in:
23
PeopleVille.Extension.Mod1/Class1.cs
Normal file
23
PeopleVille.Extension.Mod1/Class1.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
13
PeopleVille.Extension.Mod1/PeopleVille.Extension.Mod1.csproj
Normal file
13
PeopleVille.Extension.Mod1/PeopleVille.Extension.Mod1.csproj
Normal file
@@ -0,0 +1,13 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="../PeopleVille/PeopleVille.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user