Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ducasse/myg
https://github.com/ducasse/myg
pharo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ducasse/myg
- Owner: Ducasse
- Created: 2023-04-24T11:00:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-22T12:39:53.000Z (5 months ago)
- Last Synced: 2024-10-09T13:21:14.874Z (3 months ago)
- Topics: pharo
- Language: Smalltalk
- Homepage:
- Size: 5.36 MB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
- SokobanYou can play each game by executing these snippets :
```Smalltalk
MineSweeper open
```
```Smalltalk
Takuzu open
```
```Smalltalk
Sokoban open
```