-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove part-of directives and clean up analyzer warnings
- Loading branch information
Showing
33 changed files
with
110 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
part of '../../tiled.dart'; | ||
|
||
class Flips { | ||
final bool horizontally; | ||
final bool vertically; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,28 @@ | ||
library tiled; | ||
|
||
import 'dart:collection'; | ||
import 'dart:convert'; | ||
import 'dart:math' show Rectangle; | ||
import 'dart:typed_data'; | ||
|
||
import 'package:archive/archive.dart'; | ||
import 'package:collection/collection.dart'; | ||
import 'package:meta/meta.dart'; | ||
import 'package:xml/xml.dart'; | ||
|
||
part 'src/chunk.dart'; | ||
part 'src/common/enums.dart'; | ||
part 'src/common/flips.dart'; | ||
part 'src/common/frame.dart'; | ||
part 'src/common/gid.dart'; | ||
part 'src/common/point.dart'; | ||
part 'src/common/property.dart'; | ||
part 'src/common/tiled_image.dart'; | ||
part 'src/common/color.dart'; | ||
part 'src/editor_setting/chunk_size.dart'; | ||
part 'src/editor_setting/editor_setting.dart'; | ||
part 'src/editor_setting/export.dart'; | ||
part 'src/layer.dart'; | ||
part 'src/objects/text.dart'; | ||
part 'src/objects/tiled_object.dart'; | ||
part 'src/parser.dart'; | ||
part 'src/template.dart'; | ||
part 'src/tile_map_parser.dart'; | ||
part 'src/tiled_map.dart'; | ||
part 'src/tileset/grid.dart'; | ||
part 'src/tileset/terrain.dart'; | ||
part 'src/tileset/tile.dart'; | ||
part 'src/tileset/tile_offset.dart'; | ||
part 'src/tileset/tileset.dart'; | ||
part 'src/tileset/wang/wang_color.dart'; | ||
part 'src/tileset/wang/wang_set.dart'; | ||
part 'src/tileset/wang/wang_tile.dart'; | ||
part 'src/tsx_provider.dart'; | ||
export 'src/chunk.dart'; | ||
export 'src/common/color.dart'; | ||
export 'src/common/enums.dart'; | ||
export 'src/common/flips.dart'; | ||
export 'src/common/frame.dart'; | ||
export 'src/common/gid.dart'; | ||
export 'src/common/point.dart'; | ||
export 'src/common/property.dart'; | ||
export 'src/common/tiled_image.dart'; | ||
export 'src/editor_setting/chunk_size.dart'; | ||
export 'src/editor_setting/editor_setting.dart'; | ||
export 'src/editor_setting/export.dart'; | ||
export 'src/layer.dart'; | ||
export 'src/objects/text.dart'; | ||
export 'src/objects/tiled_object.dart'; | ||
export 'src/parser.dart'; | ||
export 'src/template.dart'; | ||
export 'src/tile_map_parser.dart'; | ||
export 'src/tiled_map.dart'; | ||
export 'src/tileset/grid.dart'; | ||
export 'src/tileset/terrain.dart'; | ||
export 'src/tileset/tile.dart'; | ||
export 'src/tileset/tile_offset.dart'; | ||
export 'src/tileset/tileset.dart'; | ||
export 'src/tileset/wang/wang_color.dart'; | ||
export 'src/tileset/wang/wang_set.dart'; | ||
export 'src/tileset/wang/wang_tile.dart'; | ||
export 'src/tsx_provider.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.