https://github.com/munificent/piecemeal
Basic data structures your 2D Dart game may need.
https://github.com/munificent/piecemeal
Last synced: 3 months ago
JSON representation
Basic data structures your 2D Dart game may need.
- Host: GitHub
- URL: https://github.com/munificent/piecemeal
- Owner: munificent
- License: other
- Created: 2014-07-17T03:08:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T16:07:56.000Z (over 2 years ago)
- Last Synced: 2025-04-02T03:13:54.774Z (10 months ago)
- Language: Dart
- Size: 69.3 KB
- Stars: 52
- Watchers: 6
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Piecemeal is a small [Dart][] library of low-level utility types aimed at 2D
games. In particular, I harvested it from my roguelike [Hauberk][].
[dart]: https://www.dartlang.org/
[hauberk]: https://github.com/munificent/hauberk
## Using it
Add it to your package's pubspec:
```yaml
dependencies:
piecemeal: any
```
Import it:
```dart
import 'package:piecemeal/piecemeal.dart';
```
## Running tests
Piecemeal comes with a unit test suite. From the root directory of piecemeal,
run:
```dart
dart --checked test/run_all.dart
```