diff options
author | truebrain <truebrain@openttd.org> | 2011-12-19 20:50:54 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-19 20:50:54 +0000 |
commit | 12aa5b6a583aa7ca9092ec6c77e7b12677cdd6a4 (patch) | |
tree | 7569f15cf65bf42fc1b4fff16a66cba8d0648299 /src/script/squirrel.hpp | |
parent | 5cda1d7c90f7ac2a1d8a851edbe426f07a032946 (diff) | |
download | openttd-12aa5b6a583aa7ca9092ec6c77e7b12677cdd6a4.tar.xz |
(svn r23604) -Add: initial support for GameScripts
Diffstat (limited to 'src/script/squirrel.hpp')
-rw-r--r-- | src/script/squirrel.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/squirrel.hpp b/src/script/squirrel.hpp index dbccd3c08..4e31d3247 100644 --- a/src/script/squirrel.hpp +++ b/src/script/squirrel.hpp @@ -16,7 +16,8 @@ /** The type of script we're working with, i.e. for who is it? */ enum ScriptType { - ST_AI, ///< The script is for the AI. + ST_AI, ///< The script is for AI scripts. + ST_GS, ///< The script is for Game scripts. }; class Squirrel { |