Files
esengine/source/src/Tiled/ITmxLayer.ts
T

9 lines
194 B
TypeScript
Raw Normal View History

2020-08-12 12:16:35 +08:00
module es {
export interface ITmxLayer {
offsetX: number;
offsetY: number;
opacity: number;
visible: boolean;
properties: Map<string, string>;
}
}