Lidt Cleanup

This commit is contained in:
aqys
2026-03-27 08:23:41 +01:00
parent 0a3c20d687
commit 94bd4d1f05
4 changed files with 0 additions and 6 deletions

View File

@@ -1,5 +1,3 @@
using PeopleVille.Locations;
namespace PeopleVille
{
public class GameManager

View File

@@ -1,5 +1,3 @@
using PeopleVille.Equipment;
namespace PeopleVille.Locations
{
public class Store : Location

View File

@@ -26,7 +26,6 @@ namespace PeopleVille.Persons
return;
}
// 50/50 om vi gør noget eller ej
if (RNG.ThrowDice(Dices.D3) == 1)
return;
switch (RNG.ThrowDice(Dices.D4))

View File

@@ -1,7 +1,6 @@
using PeopleVille.Equipment;
using PeopleVille.Locations;
using PeopleVille.Persons;
using PeopleVille;
using System.Reflection;
namespace PeopleVille.WorldBuilder
{