chore(release): 0.2.1
[risinglegends.git] / src / events / travel / shared.ts
1 import {City, Location, Path} from "../../shared/map"
2
3 export type DTO = {
4   city: City,
5   locations: Location[],
6   paths: Path[]
7 }
8
9 export type TravelDTO = {
10   things: any[],
11   walkingText: string,
12   closestTown: number;
13 }