Add project files.

This commit is contained in:
2026-07-28 15:11:50 -05:00
parent 634bbd3d2e
commit c8efc0f586
31 changed files with 779 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
using Raster3D.App.Interfaces;
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
{
public class Player : IEntity
{
public int id { get; set; }
public Vec2D position { get; set; }
public void tick()
{
}
public void spawn()
{
}
public void free()
{
}
}
}