mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
* artemis ecs * Working on StarWarrior * Refactor for bugs * demo works :) * Fix pool bug * Fix string typo * ObjectPool garbage optimization * Aspect attribute * Remove BigInteger * Fix demo * Refactor for events * wip on platformer demo * Fix typo
10 lines
189 B
C#
10 lines
189 B
C#
using System;
|
|
|
|
namespace MonoGame.Extended.Entities
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class EntityComponentAttribute : Attribute
|
|
{
|
|
}
|
|
}
|