mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 22:05:58 +01:00
17 lines
No EOL
300 B
C++
17 lines
No EOL
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;
|
|
}; |