ruffle/core/src/character.rs

15 lines
329 B
Rust
Raw Normal View History

2019-04-25 17:52:22 +00:00
pub enum Character {
Graphic {
2019-04-26 03:27:44 +00:00
x_min: f32,
y_min: f32,
2019-04-27 17:54:37 +00:00
shape_handle: crate::backend::render::common::ShapeHandle,
2019-04-25 17:52:22 +00:00
},
MovieClip {
num_frames: u16,
2019-04-26 03:27:44 +00:00
tag_stream_start: u64,
2019-04-25 17:52:22 +00:00
},
Bitmap(crate::backend::render::common::BitmapHandle),
2019-05-02 05:34:02 +00:00
Button(Box<swf::Button>),
2019-04-25 17:52:22 +00:00
Sound,
}