summaryrefslogtreecommitdiff
path: root/examples/05-list/output/rust/src/point.rs
blob: 6249c0aa551ee3d8828d6e0977da909514ceb152 (plain)
1
2
3
4
5
6
7
8
9
10
// Generated by hobgoblin.

pub struct Path {
    pub points: std::vec::Vec<crate::point::Point>,
}

pub struct Point {
    pub x: i32,
    pub y: i32,
}