summaryrefslogtreecommitdiff
path: root/examples/08-imports/output/rust/src/line.rs
blob: 01c9d432786fe8a4c8b2503e2e14cdc4e73a204e (plain)
1
2
3
4
5
6
7
// Generated by hobgoblin.

/// A straight line from one point to another.
pub struct Line {
    pub start: crate::point::Point,
    pub end: crate::point::Point,
}