mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2024-12-14 00:24:55 +00:00
Merge branch 'master' into feature/controller
This commit is contained in:
commit
6b6e43b7f9
|
@ -605,7 +605,7 @@ impl PhysicalEntity for Bullet {
|
||||||
let mut npc = NPCMap::create_npc(4, &state.npc_table);
|
let mut npc = NPCMap::create_npc(4, &state.npc_table);
|
||||||
npc.cond.set_alive(true);
|
npc.cond.set_alive(true);
|
||||||
npc.direction = Direction::Left;
|
npc.direction = Direction::Left;
|
||||||
npc.x = (x * 16 + 8) * 0x200;sta
|
npc.x = (x * 16 + 8) * 0x200;
|
||||||
npc.y = (y * 16 + 8) * 0x200;
|
npc.y = (y * 16 + 8) * 0x200;
|
||||||
|
|
||||||
for _ in 0..4 {
|
for _ in 0..4 {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
doukutsu_rs::init().unwrap();
|
doukutsu_rs::init().unwrap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue