mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 02:25:52 -04:00
19 lines
614 B
TypeScript
19 lines
614 B
TypeScript
import type { EditableTileMap } from '../model/TileMapModel';
|
|
import { TileMapFileContent } from './TileMapFileContent';
|
|
export declare namespace TileMapLoader {
|
|
/**
|
|
* Create a {@link EditableTileMap} from the raw data.
|
|
*
|
|
* @param tileMapFileContent The data exported from Tiled/LDtk.
|
|
* @param levelIndex The level of the tile map to load from.
|
|
* @param pako The zlib library.
|
|
* @returns A {@link EditableTileMap}
|
|
*/
|
|
function load(
|
|
tileMapFileContent: TileMapFileContent,
|
|
levelIndex: number,
|
|
pako: any
|
|
): EditableTileMap | null;
|
|
}
|
|
//# sourceMappingURL=TileMapLoader.d.ts.map
|