Skip to content

A library providing implementations for common patterns in Squeak/Smalltalk game development.

License

Notifications You must be signed in to change notification settings

hpi-swa-teaching/GameMecha

Repository files navigation

Game Mechanics build status

We are creating a game library.

How to install

  1. Get Squeak 5.1 or later
  2. Load Metacello
  3. Finally, load the library with the following command:
Metacello new
  baseline: 'GM';
  repository: 'github://hpi-swa-teaching/GameMecha/source';
  load.

How to use

The library comes with an extensive documentation in tests and class comments. You can load these by executing:

Metacello new
  baseline: 'GM';
  repository: 'github://hpi-swa-teaching/GameMecha/source';
  load: 'test'.

You can find the examples in the GM-AcceptanceTest class category.