ruffle/src/character.rs

13 lines
209 B
Rust
Raw Normal View History

2019-04-25 17:52:22 +00:00
pub enum Character {
Graphic {
2019-04-27 01:55:06 +00:00
//image: HtmlImageElement,
2019-04-26 03:27:44 +00:00
x_min: f32,
y_min: f32,
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
},
Sound,
}