eqemu-server/common/process.h
2025-12-17 09:32:44 -08:00

7 lines
121 B
C++

#pragma once
class Process {
public:
static std::string execute(const std::string &cmd, bool return_result = true);
};