Class Main

java.lang.Object
Main.Main

public class Main extends Object
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 Details

    • Main

      public Main()
  • Method Details

    • main

      public static void main(String[] args)
      The main method of the application.

      Creates an instance of GameLogic and calls GameLogic.startGame() to begin gameplay.

      Parameters:
      args - command-line arguments (not used)