eqemu-server/common/process.h
2025-12-26 20:58:07 -08:00

7 lines
121 B
C++

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