This is a simple template project for creating a game using the LÖVE 2D framework and Lua.
- Make sure Lua is installed.
- Make sure LÖVE 2D is installed.
- Navigate to the project directory.
- Run the game with the command:
love .
main.lua
: Main entry point of the game.conf.lua
: Configuration file for LÖVE 2D settings.assets/
: Directory for storing game assets (images, sounds, fonts).src/
: Directory for storing Lua scripts for game objects and logic.
This project is licensed under the MIT License - see the LICENSE file for details.
License only applies to the code in this repository. Lua and LÖVE 2D have their own licenses which you should review before using them in your project.
.
├── assets/
│ ├── fonts/
│ │ └── font.ttf
│ ├── images/
│ │ └── image.png
│ └── sounds/
│ └── sound.ogg
├── conf.lua
├── main.lua
├── LICENSE
├── README.md
└── src/
├── game.lua
├── player.lua
└── enemy.lua