Skip to content

Commit 9ade9bd

Browse files
authored
Merge pull request #5 from Yarwin/fix-missing-imports-for-dodge-the-creeps
Fix missing imports for dodge-the-creeps
2 parents c54bcba + f793d9c commit 9ade9bd

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)