summaryrefslogtreecommitdiff
path: root/src/newgrf_spritegroup.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-11-10 20:38:46 +0000
committeralberth <alberth@openttd.org>2012-11-10 20:38:46 +0000
commitb985c4c0f8f0428f1d036e66ec919e33063bb32c (patch)
tree4503b67df89b900337572d62bc051b2dc96505bb /src/newgrf_spritegroup.h
parent438495b433f5b4d3ce81f8efc7d655d2337582fe (diff)
downloadopenttd-b985c4c0f8f0428f1d036e66ec919e33063bb32c.tar.xz
(svn r24679) -Codechange: Add resolver classes for towns.
Diffstat (limited to 'src/newgrf_spritegroup.h')
-rw-r--r--src/newgrf_spritegroup.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h
index c70901622..9461be0c8 100644
--- a/src/newgrf_spritegroup.h
+++ b/src/newgrf_spritegroup.h
@@ -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;