Kav/Geometry/Interfaces/ITransformable.cs

10 lines
138 B
C#
Raw Normal View History

2020-12-12 08:17:10 +00:00
using Microsoft.Xna.Framework;
namespace Kav
{
public interface ITransformable
{
Matrix TransformMatrix { get; }
}
}