summaryrefslogtreecommitdiff
path: root/src/game/powerup.rs
blob: 47e73a121cc9e3be567eb177033aa05763565e58 (plain)
1
2
3
4
5
6
use crate::geometry::*;

#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct Powerup {
    pub position: Point2d,
}