You've already forked my-first-website
mirror of
https://github.com/jakejarvis/my-first-website.git
synced 2025-09-18 15:55:31 -04:00
first commit
This commit is contained in:
BIN
games/pacman/FChemin.class
Normal file
BIN
games/pacman/FChemin.class
Normal file
Binary file not shown.
BIN
games/pacman/FPanic.class
Normal file
BIN
games/pacman/FPanic.class
Normal file
Binary file not shown.
BIN
games/pacman/FZombie.class
Normal file
BIN
games/pacman/FZombie.class
Normal file
Binary file not shown.
BIN
games/pacman/Game.class
Normal file
BIN
games/pacman/Game.class
Normal file
Binary file not shown.
BIN
games/pacman/IntroView.class
Normal file
BIN
games/pacman/IntroView.class
Normal file
Binary file not shown.
BIN
games/pacman/Laby.class
Normal file
BIN
games/pacman/Laby.class
Normal file
Binary file not shown.
BIN
games/pacman/PacAlive.class
Normal file
BIN
games/pacman/PacAlive.class
Normal file
Binary file not shown.
BIN
games/pacman/PacDead.class
Normal file
BIN
games/pacman/PacDead.class
Normal file
Binary file not shown.
BIN
games/pacman/PacMan.class
Normal file
BIN
games/pacman/PacMan.class
Normal file
Binary file not shown.
BIN
games/pacman/PacManApp.class
Normal file
BIN
games/pacman/PacManApp.class
Normal file
Binary file not shown.
BIN
games/pacman/PacManView.class
Normal file
BIN
games/pacman/PacManView.class
Normal file
Binary file not shown.
BIN
games/pacman/PacPoint.class
Normal file
BIN
games/pacman/PacPoint.class
Normal file
Binary file not shown.
BIN
games/pacman/Place.class
Normal file
BIN
games/pacman/Place.class
Normal file
Binary file not shown.
BIN
games/pacman/Position.class
Normal file
BIN
games/pacman/Position.class
Normal file
Binary file not shown.
BIN
games/pacman/PositionView.class
Normal file
BIN
games/pacman/PositionView.class
Normal file
Binary file not shown.
BIN
games/pacman/PowerPill.class
Normal file
BIN
games/pacman/PowerPill.class
Normal file
Binary file not shown.
BIN
games/pacman/ScoreView.class
Normal file
BIN
games/pacman/ScoreView.class
Normal file
Binary file not shown.
BIN
games/pacman/SlowChemin.class
Normal file
BIN
games/pacman/SlowChemin.class
Normal file
Binary file not shown.
BIN
games/pacman/State.class
Normal file
BIN
games/pacman/State.class
Normal file
Binary file not shown.
BIN
games/pacman/StaticObject.class
Normal file
BIN
games/pacman/StaticObject.class
Normal file
Binary file not shown.
BIN
games/pacman/fruiteat.au
Normal file
BIN
games/pacman/fruiteat.au
Normal file
Binary file not shown.
BIN
games/pacman/ghosteat.au
Normal file
BIN
games/pacman/ghosteat.au
Normal file
Binary file not shown.
BIN
games/pacman/ghosteat2.au
Normal file
BIN
games/pacman/ghosteat2.au
Normal file
Binary file not shown.
BIN
games/pacman/interm.au
Normal file
BIN
games/pacman/interm.au
Normal file
Binary file not shown.
BIN
games/pacman/killed.au
Normal file
BIN
games/pacman/killed.au
Normal file
Binary file not shown.
15
games/pacman/pac.html
Normal file
15
games/pacman/pac.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Pac Man</title>
|
||||
<META NAME="Generator" CONTENT="NetObjects Fusion Trial 2.0.2 for Windows">
|
||||
<META name="keywords" content="games, pacman, Pac-Man, java, applet">
|
||||
</HEAD>
|
||||
<BODY background="pacmaze1.jpg" TEXT="#ffffff">
|
||||
|
||||
|
||||
<CENTER><IMG SRC="pactitle.jpg" ></CENTER>
|
||||
<CENTER><applet code="PacManApp.class" width=526 height=427></applet></CENTER>
|
||||
|
||||
|
||||
|
||||
|
BIN
games/pacman/pacchomp.au
Normal file
BIN
games/pacman/pacchomp.au
Normal file
Binary file not shown.
44
games/pacman/pacman.php
Normal file
44
games/pacman/pacman.php
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
<?
|
||||
|
||||
/*
|
||||
include("../../global.php");
|
||||
|
||||
$headtag = '';
|
||||
|
||||
// below is the bodytag,headtag,tablecolor
|
||||
|
||||
head("",$headtag,"",$cat);
|
||||
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- START MAIN BODY CONTENT-->
|
||||
|
||||
|
||||
<!--TITLE HERE-->
|
||||
|
||||
<DIV ALIGN="center"><FONT SIZE="4"><B>Pacman</B></FONT>
|
||||
|
||||
<BR><BR><BR>
|
||||
<!--DESCRIPTION HERE-->
|
||||
|
||||
The old arcade classic video game reborn in a java applet! Great fun!
|
||||
<BR><BR>
|
||||
<!--BODY CODE HERE-->
|
||||
<applet code="PacManApp.class" width=526 height=427></applet><BR><BR>
|
||||
|
||||
Author: Jean Francois Buisson
|
||||
|
||||
<BR><BR>
|
||||
|
||||
<A href="http://www.javafile.com/games/pacman/pacman.zip"><B>Download the Script</B></A></P>
|
||||
|
||||
</DIV>
|
||||
|
||||
|
||||
<!-- END MAIN BODY CONTENT-->
|
||||
|
||||
|
||||
|
||||
<? footer(); ?>
|
19
games/pacman/pacman.txt
Normal file
19
games/pacman/pacman.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
PASTE THIS SCRIPT INTO YOUR BODY TAG
|
||||
|
||||
<BODY background="pacmaze1.jpg" TEXT="#ffffff">
|
||||
|
||||
<applet code="PacManApp.class" width=526 height=427></applet></CENTER>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com
|
BIN
games/pacman/pacman2.au
Normal file
BIN
games/pacman/pacman2.au
Normal file
Binary file not shown.
BIN
games/pacman/pacman98.gif
Normal file
BIN
games/pacman/pacman98.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
BIN
games/pacman/pacmaze1.jpg
Normal file
BIN
games/pacman/pacmaze1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
BIN
games/pacman/pacstart.au
Normal file
BIN
games/pacman/pacstart.au
Normal file
Binary file not shown.
BIN
games/pacman/pactitle.jpg
Normal file
BIN
games/pacman/pactitle.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Reference in New Issue
Block a user