mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
10 lines
206 B
C#
10 lines
206 B
C#
using MonoGame.Extended.Entities;
|
|
|
|
namespace MonoGame.Extended.Gui.Tests.Implementation
|
|
{
|
|
[EntityComponent]
|
|
public class EntityComponentBasic
|
|
{
|
|
public int Number { get; set; }
|
|
}
|
|
} |