mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 18:15:27 -04:00
e9b4de2ca9
Only show in developer changelog
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
|