apollo_hyper_api_standard/
lib.rs

1// #![allow(incomplete_features)]
2// #![feature(return_position_impl_trait_in_trait)]
3use std::path::Path;
4
5pub trait ApolloMultiEmulator {
6    fn create_emulator(core_path: &Path, rom_path: &Path) -> Box<dyn ApolloEmulator>; //impl ApolloEmulator;
7}
8
9pub trait ApolloEmulator {
10    fn boot(&self, rom_path: &Path);
11}