mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-23 19:46:30 +00:00
eb5fd93e9f
* Added some basic tests for the ECS * Add test project for Nuclex Gui * Nuclex Gui project update * Added ability to style labels * Removed Nuclex Gui Test project for lack of tests
15 lines
376 B
C#
15 lines
376 B
C#
using MonoGame.Extended.Entities;
|
|
|
|
namespace MonoGame.Extended.Gui.Tests.Implementation
|
|
{
|
|
[EntityTemplate(Name)]
|
|
public class EntityTemplateBasic : EntityTemplate
|
|
{
|
|
public const string Name = nameof(EntityTemplateBasic);
|
|
|
|
protected override void Build(Entity entity)
|
|
{
|
|
entity.Attach<EntityComponentBasic>();
|
|
}
|
|
}
|
|
} |