Skip to content

lhyochan7/Java-Final-Project-GUI-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Final Project

Using GUI and java swing. This is text-based story game. The goal of the game is to escape from an unknown room. In order to escape you must follow the storyline and earn clues from solving mini-games and use them to figure out the password to escape by opening a dial lock.

To run the game download the file and upload it to Eclipse.

=> If wanting to add BGM to the game, you must downlaod a BGM (.wav) file and add it to the main.java.

	try
	{
		AudioInputStream bgm = AudioSystem.getAudioInputStream(new File("BGM.wav"));
		Clip clip = AudioSystem.getClip();
		clip.stop();
		clip.open(bgm);
		clip.start();
	}
	catch (Exception ex) {
		
	}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages