Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ducasse/myg


https://github.com/ducasse/myg

pharo

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Myg

Myg is a project containing games and providing tools to create other games.

## Loading the project

Load a stable version of Myg with the following snippet, in Pharo 11:

```Smalltalk
Author fullName: 'No'.
Metacello new
repository: 'github://Ducasse/Myg:v1.0.2/src';
baseline: 'Myg';
onConflictUseLoaded;
load.
```

For development, load master branch:

```Smalltalk
Author fullName: 'No'.
Metacello new
repository: 'github://Ducasse/Myg';
baseline: 'Myg';
onConflictUseLoaded;
load.
```

## Playing Games

There are currently 3 games in Myg :

- MineSweeper
- Takuzu
- Sokoban

You can play each game by executing these snippets :

```Smalltalk
MineSweeper open
```
```Smalltalk
Takuzu open
```
```Smalltalk
Sokoban open
```