using Microsoft.Xna.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Raster3D.App.Interfaces { internal interface IDrawable { void draw(GameTime time); } }