Multiplayer Game is a custom-coded real-time game built using HTML, JavaScript, and CSS. It leverages WebSocket-based sockets for real-time communication between players, ensuring smooth multiplayer gameplay. The game is deployed on Render for a live experience.
- Real-time multiplayer gameplay: Connect and interact with other players via sockets.
- Neon color customization: Each player is tinted with a unique neon color from a predefined set.
- Optimized canvas rendering: Efficiently applies color tints to player images while preserving transparency.
- Built with web technologies: Developed using HTML, JavaScript, and CSS.
- Live deployment on Render: Experience the game live on Render.
multiplayer-game/
├── index.html // HTML for the game layout
├── styles.css // CSS for styling the game
├── main.js // JavaScript for game logic and socket communication
├── assets/
│ ├── playerImage.png
│ └── ... other assets ...
└── README.md // This file
-
Clone the repository:
git clone https://github.com/yourusername/multiplayer-game.git cd multiplayer-game
