Files
MonoGame.Extended/Source/MonoGame.Extended.Entities/EntityComponentAttribute.cs
T

10 lines
189 B
C#

using System;
namespace MonoGame.Extended.Entities
{
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class EntityComponentAttribute : Attribute
{
}
}