mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-19 08:30:22 -07:00
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;
|
|
}; |