12 lines
208 B
C#
12 lines
208 B
C#
|
using Microsoft.Xna.Framework;
|
||
|
|
||
|
namespace Kav
|
||
|
{
|
||
|
public interface TransformEffect
|
||
|
{
|
||
|
Matrix World { get; set; }
|
||
|
Matrix View { get; set; }
|
||
|
Matrix Projection { get; set; }
|
||
|
}
|
||
|
}
|