/*
* Created by Javier Cantn Ferrero.
* MVS 2006 / 2007
* DotnetClub Sevilla
* Date 8/10/2006
* Web www.studios-tortuga.com
* Email javiuniversidad@gmail.com
*
*/
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Storage;
namespace Game.Components{
public interface ICamera
{
Matrix World
{
get;
set;
}
Matrix View
{
get;
set;
}
Matrix Projection
{
get;
set;
}
}
}
|