diff options
author | uruk | 2013-06-17 15:45:25 +0200 |
---|---|---|
committer | uruk | 2013-06-17 15:45:25 +0200 |
commit | a3025b8dad7abfe845c57aee3703451c223fc2e6 (patch) | |
tree | 0db7ddf29af49e18f314317beee4ecabbcc1e979 /engines/avalanche/slope.cpp | |
parent | 7939ab1f62959c19a18dfe3d54aef0d0175a3b1d (diff) | |
download | scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.tar.gz scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.tar.bz2 scummvm-rg350-a3025b8dad7abfe845c57aee3703451c223fc2e6.zip |
AVALANCHE: Add namespace.
Diffstat (limited to 'engines/avalanche/slope.cpp')
-rw-r--r-- | engines/avalanche/slope.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/avalanche/slope.cpp b/engines/avalanche/slope.cpp index 83bb1d7a8e..54ab3d0aa8 100644 --- a/engines/avalanche/slope.cpp +++ b/engines/avalanche/slope.cpp @@ -25,6 +25,8 @@ * Copyright (c) 1994-1995 Mike, Mark and Thomas Thurman. */ +namespace Avalanche { + struct joysetup { word xmid,ymid,xmin,ymin,xmax,ymax; byte centre; /* Size of centre in tenths */ @@ -370,3 +372,5 @@ int main(int argc, const char* argv[]) store_slopeline(); return EXIT_SUCCESS; } + +} // End of namespace Avalanche.
\ No newline at end of file |