fix example post-rename and reorganize

This commit is contained in:
lif 2019-11-23 20:21:20 -08:00
parent f36518d2e6
commit 14a3f14b71
1 changed files with 6 additions and 5 deletions

View File

@ -1,11 +1,12 @@
extern crate crossbeam_channel;
extern crate rustro;
extern crate ferretro;
extern crate sdl2;
use rustro::retro;
use rustro::retro::ffi::{GameGeometry, SystemInfo, SystemAvInfo};
use rustro::retro::constants::{InputDeviceId, InputIndex, JoypadButton, AnalogAxis, DeviceType};
use rustro::retro::wrapper::{LibretroWrapper, Variable2, ControllerDescription2, SubsystemInfo2, InputDescriptor2};
use ferretro::retro;
use ferretro::retro::ffi::{GameGeometry, SystemInfo, SystemAvInfo};
use ferretro::retro::constants::{InputIndex, JoypadButton, AnalogAxis, DeviceType};
use ferretro::retro::wrapped_types::{ControllerDescription2, InputDescriptor2, InputDeviceId, SubsystemInfo2, Variable2};
use ferretro::retro::wrapper::LibretroWrapper;
use std::ffi::CStr;
use std::io::Read;