The Long Arc

The Long Arc is an action-packed arcade game for the Playdate console where precision, strategy, and quick reflexes are your keys to survival. Using the Playdate’s crank as your bow, you’ll defend your tower against waves of relentless enemies while upgrading your arsenal and unlocking powerful spells.


Necsus

https://github.com/NecsusECS/Necsus

Necsus is an entity component system (ECS) library for the Nim programming language that leverages Nim’s macro capabilities to minimize boilerplate code in ECS-based applications. In Necsus, components are standard Nim types, systems are regular procedures, and entity management is abstracted away, simplifying the development process. This design approach aims to keep the cognitive load low while providing the benefits of an ECS architecture.

To define an application using Necsus, developers apply the necsus pragma to a function declaration, integrating various systems into the application’s lifecycle. Systems can be designated to execute during startup, each loop iteration, or teardown phases, offering flexibility in application behavior. This structured methodology facilitates the creation of complex, efficient applications with clear separation of concerns.