#include "human_processor.h" #include "structs.h" #include "validator.h" namespace com::fourisland::lingo2_archipelago { namespace { void Run(const std::string& mapdir) { CollectedInfo info; ProcessHumanData(mapdir, info); ValidateCollectedInfo(info); } } // namespace } // namespace com::fourisland::lingo2_archipelago int main(int argc, char** argv) { if (argc != 2) { std::cout << "Incorrect argument count." << std::endl; std::cout << "Usage: validator [path to map directory]" << std::endl; return 1; } std::string mapdir = argv[1]; com::fourisland::lingo2_archipelago::Run(mapdir); return 0; } ='/thoughts/'>thoughts
mixed-content personal blog
about summary refs log tree commit diff stats
path: root/config/initializers/application_controller_renderer.rb
blob: 51639b67a00ddba973a92d59ec277f5d97b63ef6 (plain) (blame)
1
2
3
4
5
6