#include "core/command/ConsoleCommandIncludes.h" namespace orxonox { int testcommand(int a, int b) { return a + b; } SetConsoleCommand("testcommand", &testcommand); }