change stuff :3 (will break android builds)

pull/8/head
griffi-gh 2023-11-20 23:21:50 +01:00
parent 43ca458896
commit bd327c86f3
6 changed files with 8 additions and 14 deletions

View File

@ -1,5 +1,3 @@
#link crt statically on msvc
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
@ -9,12 +7,5 @@ rustflags = ["-Ctarget-feature=+crt-static"]
[target.i586-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
# enable sse,sse2,avx
[target.'cfg(target_arch = "x86_64")']
rustflags = "-Ctarget-feature=+sse,+sse2,+avx"
# use sparse crates.io protocol
[registries.crates-io]
protocol = "sparse"

View File

@ -5,6 +5,7 @@ edition = "2021"
publish = false
[lib]
name = "kubilib"
crate-type = ["lib", "cdylib"]
[dependencies]

View File

@ -6,7 +6,7 @@ use kubi_shared::{
player::PlayerHolding,
};
use crate::{
player::MainPlayer,
player::MainPlayer,
world::{raycast::{LookingAtBlock, RAYCAST_STEP}, queue::BlockUpdateQueue},
input::{Inputs, PrevInputs, RawKbmInputState},
events::{EventComponent, player_actions::PlayerActionEvent},

View File

@ -4,5 +4,5 @@
)]
fn main() {
kubi::kubi_main();
kubilib::kubi_main();
}

View File

@ -2,7 +2,8 @@ use glam::Mat4;
use shipyard::{Component, AllStoragesViewMut, UniqueViewMut};
use kubi_shared::{
entity::{Entity, Health},
player::{PLAYER_HEALTH, PlayerHolding},
player::{Player, PLAYER_HEALTH, PlayerHolding},
block::Block,
networking::{
client::{Username, Client, ClientIdMap},
messages::ClientInitData
@ -14,7 +15,6 @@ use crate::{
fly_controller::FlyController,
world::raycast::LookingAtBlock,
};
pub use kubi_shared::player::Player;
#[derive(Component)]
pub struct MainPlayer;
@ -32,7 +32,7 @@ pub fn spawn_player (
Camera::default(),
FlyController,
LookingAtBlock::default(),
PlayerHolding::default(),
PlayerHolding(Some(Block::Cobblestone)),
Username("LocalPlayer".into())
));
}

2
rust-toolchain.toml Normal file
View File

@ -0,0 +1,2 @@
[toolchain]
channel = "nightly"