find_package(Protobuf REQUIRED) add_executable(datapacker main.cpp container.cpp ) set_property(TARGET datapacker PROPERTY CXX_STANDARD 20) set_property(TARGET datapacker PROPERTY CXX_STANDARD_REQUIRED ON) target_include_directories(datapacker PUBLIC ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/tools) target_link_libraries(datapacker PUBLIC protos util protobuf::libprotobuf) t.fourisland.com/lingo2-archipelago' title='lingo2-archipelago Git repository'/>
about summary refs log tree commit diff stats
path: root/tools/validator/godot_processor.h
blob: 97bcea6e7ca04f34f54ae064f118659d84c045f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TOOLS_VALIDATOR_GODOT_PROCESSOR_H_
#define TOOLS_VALIDATOR_GODOT_PROCESSOR_H_

#include <string>

namespace com::fourisland::lingo2_archipelago {

struct CollectedInfo;

void ProcessGodotData(const std::string& repodir, CollectedInfo& info);

}  // namespace com::fourisland::lingo2_archipelago

#endif /* TOOLS_VALIDATOR_GODOT_PROCESSOR_H_ */