Files
MonoGame.Extended/Source/MonoGame.Extended/IColorable.cs
T
2016-05-08 22:12:37 +10:00

9 lines
141 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended
{
public interface IColorable
{
Color Color { get; set; }
}
}