ruffle/core/src/lib.rs

37 lines
533 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;
#[macro_use]
extern crate downcast_rs;
2019-05-02 00:46:49 +00:00
mod avm1;
mod bounding_box;
2019-04-28 01:15:43 +00:00
mod character;
pub mod color_transform;
mod context;
mod drawing;
pub mod events;
2019-05-04 18:45:11 +00:00
mod font;
2019-04-28 01:15:43 +00:00
mod library;
mod loader;
2019-04-28 01:15:43 +00:00
mod player;
2019-04-29 05:55:44 +00:00
mod prelude;
mod property_map;
pub mod shape_utils;
2020-01-18 22:48:34 +00:00
pub mod string_utils;
pub mod tag_utils;
2019-04-29 05:55:44 +00:00
mod transform;
mod xml;
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;