ruffle/core/src/lib.rs

30 lines
427 B
Rust
Raw Normal View History

#![allow(clippy::unneeded_field_pattern)]
2019-04-29 05:55:44 +00:00
#[macro_use]
mod display_object;
#[macro_use]
extern crate smallvec;
2019-05-02 00:46:49 +00:00
mod avm1;
mod bounding_box;
2019-04-28 01:15:43 +00:00
mod character;
mod color_transform;
mod context;
2019-08-19 14:53:12 +00:00
mod events;
2019-05-04 18:45:11 +00:00
mod font;
2019-04-28 01:15:43 +00:00
mod library;
2019-05-03 02:11:47 +00:00
pub mod matrix;
2019-04-28 01:15:43 +00:00
mod player;
2019-04-29 05:55:44 +00:00
mod prelude;
pub mod shape_utils;
pub mod tag_utils;
2019-04-29 05:55:44 +00:00
mod transform;
2019-04-28 01:15:43 +00:00
2019-04-30 08:53:21 +00:00
pub mod backend;
2019-08-19 14:53:12 +00:00
pub use events::PlayerEvent;
2019-04-28 01:15:43 +00:00
pub use player::Player;
2019-08-14 19:39:26 +00:00
pub use swf;
pub use swf::Color;