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

21 lines
387 B
C#

using Raster3D.Engine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Raster3D.Engine.Graphics;
namespace Raster3D.App.Interfaces
{
internal interface IEntity
{
int id { get; set; }
Vec2D position { get; set; }
void tick();
void spawn();
void free();
}
}