#pragma once #include #include #include #include "commands.hpp" namespace cellar { namespace steam { extern std::vector find_steam_libraries(); extern void test_command(int argc, std::vector argv); /*[[[cog import cog with open("src/steam/commands.txt") as commandsfile: for line in commandsfile: item = line.strip().split(" ") cog.outl("extern void {0} (int, vector);".format(item[1])) ]]]*/ //[[[end]]] } namespace commands { extern std::map steam_commands(); } }