Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Oct 3, 2016
2 parents bc61cf6 + 1521846 commit a7d74b6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
before_script:
- sudo apt-get install -qq libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libsdl2-mixer-dev
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ description = "Rust library to create a Good Game Easily"
version = "0.1.0"
repository = "https://github.com/ggez-dev/ggez"
keywords = ["ggez", "graphics", "2D"]
authors = ["Rafael Epplee <[email protected]>", "Sven-Hendrik Haase <[email protected]>"]
authors = [
"Rafael Epplee <[email protected]>",
"Sven-Hendrik Haase <[email protected]>"
]
license = "MIT"
readme = "README.md"

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ggez
[![Build Status](https://travis-ci.org/ggez/ggez.svg?branch=master)](https://travis-ci.org/ggez/ggez) [![Docs Status](https://docs.rs/ggez/badge.svg)](https://docs.rs/ggez) [![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/svenstaro/ggez/blob/master/LICENSE) [![Crates.io](https://img.shields.io/crates/v/ggez.svg)](https://crates.io/crates/ggez) [![Crates.io](https://img.shields.io/crates/d/ggez.svg)](https://crates.io/crates/ggez)

A Rust library to create a Good Game Easily.

Expand All @@ -11,7 +12,7 @@ basic GUI/debugger, scene manager, and more sophisticated drawing tools such as
etc.


# Features
## Features

* Filesystem abstraction that lets you load resources from folders or (eventually) zip files
* Hardware-accelerated rendering of bitmaps
Expand All @@ -20,11 +21,11 @@ etc.
* Interface for handling keyboard and mouse events
* Config file for defining engine and game settings

# Examples
## Examples

See example/imageview.rs

# Status
## Status

* Still implementing sound
* Need to make the example's resource paths work properly
Expand All @@ -36,14 +37,14 @@ See example/imageview.rs
* Need to implement bitmap fonts and zip file loading
* Need to add more tests, somehow

# Useful goodies
## Useful goodies

* cgmath for math operations
* specs for entity-component system
* cgmath or vecmath for math operations?
* physics/collision???

# Credits
## Credits

* http://opengameart.org/content/flappy-dragon-sprite-sheets
* http://opengameart.org/content/cozy-endless-game-background

0 comments on commit a7d74b6

Please sign in to comment.