mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-21 17:59:31 +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
10 lines
229 B
C#
10 lines
229 B
C#
using MonoGame.Extended.Entities;
|
|
|
|
namespace MonoGame.Extended.Gui.Tests.Implementation
|
|
{
|
|
[EntityComponent]
|
|
public class EntityComponentBasic : TransformComponent2D
|
|
{
|
|
public int Number { get; set; }
|
|
}
|
|
} |