fix type defs for noise cmds
This commit is contained in:
parent
89afa8af10
commit
30da41293a
1 changed files with 4 additions and 4 deletions
|
@ -178,13 +178,13 @@ pub const Command = struct {
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const Noise = CustomCommand(Tag.noise, custom.RandomNoise, struct {
|
pub const Noise = CustomCommand(Tag.noise, custom.RandomNoise, struct {
|
||||||
seed: f32,
|
seed: u64,
|
||||||
fill_bytes: f32,
|
fill_bytes: usize,
|
||||||
});
|
});
|
||||||
|
|
||||||
pub const Wildnoise = CustomCommand(Tag.wildnoise, custom.WildNoise, struct {
|
pub const Wildnoise = CustomCommand(Tag.wildnoise, custom.WildNoise, struct {
|
||||||
seed: f32,
|
seed: u64,
|
||||||
fill_bytes: f32,
|
fill_bytes: usize,
|
||||||
});
|
});
|
||||||
|
|
||||||
pub const Write = CustomCommand(Tag.write, custom.Write, struct {
|
pub const Write = CustomCommand(Tag.write, custom.Write, struct {
|
||||||
|
|
Loading…
Reference in a new issue