Class Main
java.lang.Object
Main.Main
Entry point for the Pokémon-inspired game.
This class contains the main method which initializes the game logic and starts the
game. It is responsible for launching the application.
Example usage:
java Main
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Main
public Main()
-
-
Method Details
-
main
The main method of the application.Creates an instance of
GameLogicand callsGameLogic.startGame()to begin gameplay.- Parameters:
args- command-line arguments (not used)
-