Add a barebones Entity::Update()

This commit is contained in:
Maple Redleaf
2025-11-10 12:04:31 -06:00
parent 03c3a75232
commit 45c7b2412c

View File

@@ -1 +1,7 @@
#include "../include/entity.h"
void Entity::Update() {
for (auto &comp : components) {
comp.get()->Update();
}
}