File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
examples/array_export/src
gdnative-core/src/nativescript/export Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- use gdnative:: nativescript:: export:: property:: hint :: { ArrayHint , IntHint , RangeHint } ;
1
+ use gdnative:: nativescript:: export:: property:: { ArrayHint , IntHint , RangeHint } ;
2
2
use gdnative:: prelude:: * ;
3
3
4
4
#[ derive( NativeClass ) ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use crate::private::get_api;
10
10
use super :: ClassBuilder ;
11
11
12
12
mod accessor;
13
- pub mod hint;
13
+ mod hint;
14
14
15
15
pub use hint:: * ;
16
16
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use super::{Export, ExportInfo};
16
16
/// Basic usage:
17
17
///
18
18
/// ```rust
19
- /// use gdnative_core::nativescript::export::property::hint:: RangeHint;
19
+ /// use gdnative_core::nativescript::export::property::RangeHint;
20
20
///
21
21
/// let hint: RangeHint<f64> = RangeHint::new(0.0, 20.0).or_greater();
22
22
/// ```
@@ -110,7 +110,7 @@ where
110
110
/// Basic usage:
111
111
///
112
112
/// ```rust
113
- /// use gdnative_core::nativescript::export::property::hint:: EnumHint;
113
+ /// use gdnative_core::nativescript::export::property::EnumHint;
114
114
///
115
115
/// let hint = EnumHint::new(vec!["Foo".into(), "Bar".into(), "Baz".into()]);
116
116
/// ```
You can’t perform that action at this time.
0 commit comments