usesuper::bitmap::BitmapRef;usecrate::ctypes::*;/// Information about a single bitmap, used in testing for collision between two bitmaps opaque
/// pixels.
pubstructBitmapCollider<'a>{/// A bitmap being tested for collision.
pubbitmap:&'a BitmapRef,
/// If the bitmap is flipped along each axis.
pubflipped: BitmapFlip,
/// The bitmap's x position.
pubx:i32,
/// The bitmap's y position.
puby:i32,
}