Files
Ares-mythic/ares/mythic_integration.h
Aryma e14b1f21eb refactor: rename project directory from hummer to ares
This is a major rename of the project directory structure from "hummer" to "ares". All project files including source code, headers, resources, build files, and documentation have been moved to the new directory while maintaining their content. The change includes updating Visual Studio solution and project files to reflect the new directory name.
2026-04-14 13:51:26 +07:00

12 lines
264 B
C++

#pragma once
#include <string>
// Mythic integration functions
bool initialize_mythic();
void cleanup_mythic();
std::string mythic_checkin();
std::string execute_command(const std::string& command);
// External variables
extern std::atomic<bool> mythic_running;