Snake
This is another Snake game we all know so well from de Nokia cell phone. But you should also know that it wasn't originally developed by Nokia. Actually it was made on a mainframe before my time:) It's programmed using DirectX trough Jared Bruni's MasterX classes. I've not paid any attention to the graphics really but you could improve it if you want. There is also sound included and the gameplay is very well actually although, I don't know how the speed turns out on a slow machine..
Yapay Zeka Özeti: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Upload
<html>
<script language="javascript">
function doPreload()
{
// you chg all the images in this array to the ones you want to preload
var the_images = new Array('image1.gif','image2.gif','image3.gif');
preloadImages(the_images);
}
function preloadImages(the_images_array) {
for(loop = 0; loop < the_images_array.length; loop++)
{
var an_image = new Image();
an_image.src = the_images_array[loop];
}
}
</script>
<body onLoad="doPreload();">
put your mouseovers here
</body>
</html>