Files
Raster3D/Raster3D.App/Interfaces/IDrawable.cs
T
2026-07-28 15:11:50 -05:00

15 lines
268 B
C#

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);
}
}