lots done

This commit is contained in:
Boki 2026-03-02 11:17:37 -05:00
parent 1ba7c39c30
commit fbd0ba445a
59 changed files with 6074 additions and 3598 deletions

View file

@ -0,0 +1,15 @@
using Roboto.Core;
namespace Roboto.Systems;
public class LootSystem : ISystem
{
public int Priority => SystemPriority.Loot;
public string Name => "Loot";
public bool IsEnabled { get; set; } = false;
public void Update(GameState state, ActionQueue actions)
{
// STUB: loot detection and pickup logic
}
}