17 lines
300 B
C++
17 lines
300 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
struct SPlugin {
|
||
|
|
std::string name;
|
||
|
|
std::string filename;
|
||
|
|
bool enabled;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct SPluginRepository {
|
||
|
|
std::string url;
|
||
|
|
std::string name;
|
||
|
|
std::vector<SPlugin> plugins;
|
||
|
|
std::string hash;
|
||
|
|
};
|