mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
27 lines
459 B
C#
27 lines
459 B
C#
using SS14.Shared.GameObjects;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SS14.Client.Utility
|
|
{
|
|
class RobustSortedDrawing
|
|
{
|
|
private List<Entity> _entities;
|
|
|
|
public void AddEntity()
|
|
{
|
|
|
|
}
|
|
|
|
public void RemoveEntity()
|
|
{
|
|
|
|
}
|
|
|
|
public void Draw()
|
|
{
|
|
//var sortedEnts = from x in _entities
|
|
// group x.
|
|
}
|
|
}
|
|
}
|