Messing with stuff idk if i like

This commit is contained in:
2026-02-08 18:33:00 -05:00
parent d4c70c7f00
commit 67fca0c271
13 changed files with 109 additions and 83 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections.Generic;
using System.Linq;
namespace Awperative;
/// <summary>
/// Base class for all Awperative entities, manages components as a requirement because that is the job of all entities.
/// </summary>
internal abstract partial class DockerEntity
{
public Scene scene;
public List<Component> Components => _components.ToList();
internal HashSet<Component> _components;
}