(svn r24679) -Codechange: Add resolver classes for towns.

This commit is contained in:
alberth
2012-11-10 20:38:46 +00:00
parent 438495b433
commit b985c4c0f8
4 changed files with 55 additions and 4 deletions

View File

@@ -333,6 +333,7 @@ struct ResolverObject {
ResolverObject(const GRFFile *grffile, CallbackID callback = CBID_NO_CALLBACK, uint32 callback_param1 = 0, uint32 callback_param2 = 0);
virtual ~ResolverObject();
ScopeResolver default_scope; ///< Default implementation of the grf scope.
TempScopeResolver temp_scope; ///< Temporary scope resolver to refer back to the methods of #ResolverObject.
CallbackID callback;