C++ Core Reference

Professional reference for MCX internals: architecture, core systems, extension points and implementation workflow.

Core Architecture

Module API

#include <mcx/imodule.hpp>

class MyModule : public mcx::IModule {
public:
    void OnEvent(const mcx::Event& event, mcx::ActionList& actions) override {
        // inspect event + push actions
    }
};

Runtime Components

Build & Contribution Workflow

git clone https://github.com/alanparesys/MCX.git
cd MCX
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel
./build/mcx --demo

Quality Checklist