aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/commands.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-04-07 17:18:16 +0000
committerNicola Mettifogo2007-04-07 17:18:16 +0000
commitedd226d1b646470780a785d32c06876697f75e7e (patch)
tree11545dfe20ffbecc5de86c5ca004dca5992b6970 /engines/parallaction/commands.h
parent5a8b8ca92dc95ced8df2a7f6a46412c04ebfe757 (diff)
downloadscummvm-rg350-edd226d1b646470780a785d32c06876697f75e7e.tar.gz
scummvm-rg350-edd226d1b646470780a785d32c06876697f75e7e.tar.bz2
scummvm-rg350-edd226d1b646470780a785d32c06876697f75e7e.zip
Added new ManagedList class to handle Instruction and Command lists. The same class will be used to hold Zone, Animation and WalkNode lists.
svn-id: r26410
Diffstat (limited to 'engines/parallaction/commands.h')
-rw-r--r--engines/parallaction/commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/parallaction/commands.h b/engines/parallaction/commands.h
index a1778b5d16..35ad6c15f3 100644
--- a/engines/parallaction/commands.h
+++ b/engines/parallaction/commands.h
@@ -73,6 +73,9 @@ struct Command : public Node {
~Command();
};
+//typedef Common::List<Command*> CommandList;
+typedef ManagedList<Command*> CommandList;
+
} // namespace Parallaction
#endif