This commit is contained in:
Your Name
2025-04-21 11:47:07 +12:00
parent 0eacb838ce
commit a718f23375
11 changed files with 235 additions and 10 deletions

View File

@ -1,4 +1,9 @@
#include <string>
#include <vector>
namespace dropshell {
class template_info {
public:
std::string name;
@ -20,3 +25,5 @@ class template_manager {
bool get_templates(std::vector<template_info>& templates);
bool get_template_info(const std::string& name, template_info& info);
};
} // namespace dropshell