OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
svmdefinitions.h
Go to the documentation of this file.
1#pragma once
2
3#include <zenkit/DaedalusVm.hh>
4#include <zenkit/addon/daedalus.hh>
5
6#include <memory>
7
8class SvmDefinitions final {
9 public:
10 SvmDefinitions(zenkit::DaedalusVm& vm);
12
13 std::string_view find(std::string_view speech, int id);
14
15 private:
16 zenkit::DaedalusVm& vm;
17 std::vector<std::shared_ptr<zenkit::DaedalusInstance>> svm;
18 };
19
std::string_view find(std::string_view speech, int id)