Kav/EffectInterfaces/IHasWorldMatrix.cs

10 lines
137 B
C#

using Microsoft.Xna.Framework;
namespace Kav
{
public interface IHasWorldMatrix
{
Matrix World { get; set; }
}
}