10 lines
138 B
C#
10 lines
138 B
C#
|
using Microsoft.Xna.Framework;
|
||
|
|
||
|
namespace Kav
|
||
|
{
|
||
|
public interface ITransformable
|
||
|
{
|
||
|
Matrix TransformMatrix { get; }
|
||
|
}
|
||
|
}
|