mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2025-12-26 03:18:42 +00:00
16 lines
No EOL
242 B
C++
16 lines
No EOL
242 B
C++
#include <string>
|
|
#include "unit_module.hpp"
|
|
|
|
#pragma once
|
|
|
|
namespace unit {
|
|
class ModuleBuilder {
|
|
private:
|
|
public:
|
|
ModuleBuilder();
|
|
|
|
Module create();
|
|
|
|
void config(const std::string& file);
|
|
};
|
|
} |