add basic types and fix cmake

This commit is contained in:
2026-04-19 15:35:21 +02:00
parent ebf6cea353
commit 41fd2a83ee
30 changed files with 1562 additions and 5 deletions

10
src/lib/core/Item.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "ItemType.h"
// Items on belts have no persistent identity across ticks; see
// architecture.md "Belt Subsystem".
struct Item
{
ItemType type;
};