// SPDX-License-Identifier: MIT #pragma once #include "list.h" struct entity_state { char name[128]; short brightness; }; struct entity { char id[128]; struct entity_state state; short selected; list_t node; ControlHandle ctrl; RgnHandle outerRgn; };