https://github.com/eckankar/mosgame
An attempt at making a PyGame-like library for Moscow ML.
https://github.com/eckankar/mosgame
game-development sdl sml
Last synced: 24 days ago
JSON representation
An attempt at making a PyGame-like library for Moscow ML.
- Host: GitHub
- URL: https://github.com/eckankar/mosgame
- Owner: Eckankar
- License: bsd-3-clause
- Created: 2011-06-21T19:20:22.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T18:43:14.000Z (over 4 years ago)
- Last Synced: 2025-03-24T08:55:46.277Z (about 1 month ago)
- Topics: game-development, sdl, sml
- Language: C
- Homepage:
- Size: 1.26 MB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# MosGame
[](https://travis-ci.org/Eckankar/MosGame)
An attempt at making a game library for Moscow ML.
It attempts to replicate the style of [PyGame](http://pygame.org).
Note, this is very much alpha at this point, and the names and functionality is sure to be changed a lot as the library gets expanded.
In short, don't rely on the interfaces staying the same until they're announced to be so.## Requirements
In order to compile the library, you need:
* [Moscow ML](http://github.com/kfl/mosml)
* [SDL](http://www.libsdl.org/)
* [SDL_gfx](http://www.ferzkopp.net/joomla/content/view/19/14/)
* [SDL_image](http://www.libsdl.org/projects/SDL_image/)## Compilation + installation
If you're running a unix-based system:
1. Check out a copy of the code, using the command `git clone git://github.com/Eckankar/MosGame.git`.
2. Inside the MosGame directory, edit the `Makefile`, such that all paths are correct for your system.
3. Write `make all` to build the library.
4. Write `sudo make install` to install the library.