Skip to content

Commit f793d9c

Browse files
committed
Fix missing imports for dodge-the-creeps
1 parent c54bcba commit f793d9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dodge-the-creeps/rust/src/main_scene.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::{hud, mob, player};
22

3-
use godot::classes::{Marker2D, PathFollow2D, RigidBody2D, Timer};
3+
use godot::classes::{AudioStreamPlayer, Marker2D, PathFollow2D, RigidBody2D, Timer};
44
use godot::prelude::*;
55

66
use rand::Rng as _;

dodge-the-creeps/rust/src/player.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use godot::classes::{AnimatedSprite2D, Area2D, CollisionShape2D, IArea2D, PhysicsBody2D};
1+
use godot::classes::{AnimatedSprite2D, Area2D, CollisionShape2D, IArea2D, Input, PhysicsBody2D};
22
use godot::prelude::*;
33

44
#[derive(GodotClass)]

0 commit comments

Comments
 (0)