-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/modular-player-system
- Loading branch information
Showing
68 changed files
with
81 additions
and
3,329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,6 @@ voronoi_edges.txt | |
load_test.db-journal | ||
/deps | ||
/.cargo | ||
Cargo.lock | ||
Cargo.lock | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
// This file is automatically generated by build.rs | ||
// Do not edit this file manually! | ||
|
||
use horizon_plugin_api::{Pluginstate, LoadedPlugin, Plugin}; | ||
use std::collections::HashMap; | ||
|
||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use chronos_plugin; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use chronos_plugin::*; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use chronos_plugin::Plugin as chronos_plugin_plugin; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use pebblevault_plugin; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use pebblevault_plugin::*; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use pebblevault_plugin::Plugin as pebblevault_plugin_plugin; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use player_lib; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use player_lib::*; | ||
#[allow(ambiguous_glob_reexports, unused_imports, unused_variables)] | ||
pub use player_lib::Plugin as player_lib_plugin; | ||
pub use stars_beyond_plugin; | ||
pub use stars_beyond_plugin::*; | ||
pub use stars_beyond_plugin::Plugin as stars_beyond_plugin_plugin; | ||
pub use unreal_adapter; | ||
pub use unreal_adapter::*; | ||
pub use unreal_adapter::Plugin as unreal_adapter_plugin; | ||
pub use unreal_adapter_horizon; | ||
pub use unreal_adapter_horizon::*; | ||
pub use unreal_adapter_horizon::Plugin as unreal_adapter_horizon_plugin; | ||
|
||
|
||
// Invoke the macro with all discovered plugins | ||
pub fn load_plugins() -> HashMap<String, (Pluginstate, Plugin)> { | ||
let plugins = crate::load_plugins!( | ||
chronos_plugin, | ||
player_lib, | ||
stars_beyond_plugin, | ||
unreal_adapter, | ||
unreal_adapter_horizon | ||
); | ||
plugins | ||
} |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.