21 lines
387 B
C#
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();
|
|
}
|
|
}
|