Skip to content

Commit

Permalink
fixing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
warfaj committed Mar 9, 2024
1 parent 3b8d7ea commit 5976b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/src/fireworks/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(unused_imports)]
use pax_engine::api::*;
use pax_engine::*;
use pax_std::primitives::{Ellipse, Frame, Group, Path, Rectangle, Text};
use pax_std::primitives::*;

#[pax]
#[main]
Expand Down
2 changes: 1 addition & 1 deletion examples/src/particles/src/ball.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use pax_engine::*;
use pax_engine::api::*;

use pax_std::primitives::Ellipse;
use pax_std::primitives::*;
use rand::random;

#[pax]
Expand Down

0 comments on commit 5976b11

Please sign in to comment.