diff options
Diffstat (limited to 'stockton-levels/src/traits/visdata.rs')
-rw-r--r-- | stockton-levels/src/traits/visdata.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/stockton-levels/src/traits/visdata.rs b/stockton-levels/src/traits/visdata.rs index 92ba9b8..749000b 100644 --- a/stockton-levels/src/traits/visdata.rs +++ b/stockton-levels/src/traits/visdata.rs @@ -1,4 +1,4 @@ -// Copyright (C) Oscar Shrimpton 2019 +// Copyright (C) Oscar Shrimpton 2019 // This program is free software: you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free @@ -18,12 +18,12 @@ use std::iter::Iterator; pub type ClusterId = u32; pub trait HasVisData { - /// The iterator returned from all_visible_from - type VisibleIterator: Iterator<Item = ClusterId>; + /// The iterator returned from all_visible_from + type VisibleIterator: Iterator<Item = ClusterId>; - /// Returns an iterator of all clusters visible from the given Cluster ID - fn all_visible_from(&self, from: ClusterId) -> Self::VisibleIterator; + /// Returns an iterator of all clusters visible from the given Cluster ID + fn all_visible_from(&self, from: ClusterId) -> Self::VisibleIterator; - /// Returns true if `dest` is visible from `from`. - fn cluster_visible_from(&self, from: ClusterId, dest: ClusterId) -> bool; -}
\ No newline at end of file + /// Returns true if `dest` is visible from `from`. + fn cluster_visible_from(&self, from: ClusterId, dest: ClusterId) -> bool; +} |