Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
+3
-3
@@ -6,12 +6,12 @@
|
||||
mod channel_config;
|
||||
|
||||
use anyhow::Result;
|
||||
use warp_core::{
|
||||
use galaxy_core::{
|
||||
channel::{Channel, ChannelState},
|
||||
features,
|
||||
};
|
||||
|
||||
// Simple wrapper around warp::run() for dev channel builds.
|
||||
// Simple wrapper around galaxy::run() for dev channel builds.
|
||||
fn main() -> Result<()> {
|
||||
ChannelState::set(
|
||||
ChannelState::new(Channel::Dev, channel_config::load_config!("dev"))
|
||||
@@ -20,5 +20,5 @@ fn main() -> Result<()> {
|
||||
.with_additional_features(features::PREVIEW_FLAGS),
|
||||
);
|
||||
|
||||
warp::run()
|
||||
galaxy::run()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user