BlazorApp/Bullet6/Handlers/EntityHandler.cs

10 lines
199 B
C#

using Bullet6.Interfaces;
namespace Bullet6.Handlers
{
public static class EntityHandler
{
public static void PrintName(IEntity entity) => Console.WriteLine(entity.Name);
}
}