chore(release): 0.2.0
[risinglegends.git] / src / shared / travel.ts
1 export type Travel = {
2   player_id: string;
3   source_id: number;
4   destination_id: number;
5   total_distance: number;
6   current_position: number;
7 }