mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { LDtkTileMap } from '../load/ldtk/LDtkFormat';
|
|
import { TiledTileMap } from '../load/tiled/TiledFormat';
|
|
export type TileMapFileContent =
|
|
| {
|
|
kind: 'tiled';
|
|
data: TiledTileMap;
|
|
}
|
|
| {
|
|
kind: 'ldtk';
|
|
data: LDtkTileMap;
|
|
};
|
|
//# sourceMappingURL=TileMapFileContent.d.ts.map
|