summaryrefslogtreecommitdiff
path: root/examples/09-imports/output/rust/src/point.rs
blob: 718ecfd1dde00570d6b6e6ff7203b43fce9ab7e0 (plain)
1
2
3
4
5
6
7
// Generated by hobgoblin.

/// A 2D point.
pub struct Point {
    pub x: i32,
    pub y: i32,
}