Dining Combat

Architecture
Game Manager
The game manager is a crucial part of any game development project. It is a script or a set of scripts that typically acts as a high-level component, overseeing other components and managing their interactions with one another. The game manager is responsible for managing various aspects of the game, such as input, sound, graphics, game rules, scoring, and more.
In Unity, the game manager component is usually written in C# or another programming language and includes methods and properties for controlling various aspects of the game. For example, the game manager might include methods for starting and stopping the game, keeping track of the player's score, handling user input, and managing game objects and their interactions.
The game manager ensures that the various components of the game work together seamlessly, providing a satisfying experience to players. By managing the game's different components, the game manager helps to ensure that the game is engaging, entertaining, and easy to play, ultimately enhancing the overall experience for the player.
Player
In Unity, the "player" is the game object that represents the main character in a game. It contains all the logic and components needed to control the character's movements and interactions with the game world. The player object typically includes components such as transform, rigidbody, collider, script components, animation, and input manager. Overall, the player object is a crucial component of any game project, providing the means for players to interact with and explore the game world.
Food
Similar to many games, our game contains weapons and allows players to collect them. However, unlike other games, our weapons are disposable and cannot be stored. Players can use them and then throw them away.
Chaos
The game has several different features to create a sense of chaos for the players. Some parts are interactive for the player, while others are not