Skip to content

Commit

Permalink
fix:format code
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed Jul 6, 2024
1 parent 462a814 commit 7bbfc41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gdrust/src/bullets/star_wrath_bullet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use godot::prelude::*;
use rand::{thread_rng, Rng};
use std::f32::consts::PI;

use crate::{debug_check, godot_debug_assert};
use crate::player::Player;
use crate::utils::split_to_vec;
use crate::{debug_check, godot_debug_assert};

#[derive(GodotClass)]
#[class(base=Area2D)]
Expand Down Expand Up @@ -100,7 +100,7 @@ impl StarWrathBullet {
#[func]
#[debug]
fn get_track_scene(&self) -> Gd<PackedScene> {
Gd::from_variant(&self.base().get_property().get("track".into()))
Gd::from_variant(&self.base().get_property().get("track".into()))
}

#[func]
Expand Down

0 comments on commit 7bbfc41

Please sign in to comment.