ruffle/src/character.rs

13 lines
233 B
Rust
Raw Normal View History

2019-04-25 17:52:22 +00:00
use web_sys::HtmlImageElement;
pub enum Character {
Graphic {
image: HtmlImageElement,
},
MovieClip {
num_frames: u16,
tag_stream: swf::read::Reader<std::io::Cursor<Vec<u8>>>,
},
Sound,
}