Initial commit

This commit is contained in:
2026-02-02 04:50:13 +01:00
commit 5b11698731
22592 changed files with 7677434 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef LINGODEC_RESOLVER_H
#define LINGODEC_RESOLVER_H
namespace LingoDec {
struct Script;
struct ScriptNames;
class ChunkResolver {
public:
ChunkResolver() {}
virtual ~ChunkResolver() {}
virtual Script *getScript(int32 id) = 0;
virtual ScriptNames *getScriptNames(int32 id) = 0;
};
}
#endif // LINGODEC_RESOLVER_H