Wrapped the SCI engine in the Sci namespace.

svn-id: r38676
This commit is contained in:
Oystein Eftevaag 2009-02-21 10:23:36 +00:00
parent 44ea796610
commit 25f7c37171
158 changed files with 592 additions and 14 deletions

View file

@ -25,6 +25,7 @@
#include "sci/engine/int_hashmap.h"
namespace Sci {
#define HASH_MAX DCS_INT_HASH_MAX
#define HASH(x) (x & 0xff)
@ -107,3 +108,4 @@ int int_hash_map_t::remove_value(int value) {
return -1; // Not found
}
} // End of namespace Sci