Initial commit
This commit is contained in:
25
engines/director/lingo/lingodec/resolver.h
Normal file
25
engines/director/lingo/lingodec/resolver.h
Normal 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
|
||||
Reference in New Issue
Block a user