Files
MonoGame.Extended/Source/MonoGame.Extended.Entities/EntityComponentAttribute.cs
T
2017-06-13 21:20:02 +10:00

10 lines
189 B
C#

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