var fDesc=new Array(); fDesc[0] = "Shoot Out is an arcade top down shooter. See the features page for a technical overview and to see some of the technologies implemented in this game.

Main features:
-Portable - Can compile and run under any operating system supported by SDL
-Graphics rendered using SDL and SDL_image.
-Audio and sound effects under development
-Scripting under development
-High score table and configuration done using boost::serialization.
-Free and open source under the GPL license meaning you can change or modify and redistribute however you want as long as you keep to the terms and conditions of the GPL"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }