mirror of
				https://github.com/flame-engine/flame.git
				synced 2025-11-01 01:18:38 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			394 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			394 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:dashbook/dashbook.dart';
 | |
| import 'package:flame/game.dart';
 | |
| 
 | |
| import '../../commons/commons.dart';
 | |
| import 'isometric_tile_map.dart';
 | |
| 
 | |
| void addTileMapStories(Dashbook dashbook) {
 | |
|   dashbook.storiesOf('Tile Maps').add(
 | |
|         'Isometric Tile Map',
 | |
|         (_) => GameWidget(game: IsometricTileMapGame()),
 | |
|         codeLink: baseLink('tile_maps/isometric_tile_map.dart'),
 | |
|       );
 | |
| }
 | 
