mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

* Add chest block placeholder * Update location of chest.zig.zon * added chests * fix some stuff * dont create all inventories on the client * make it better * remove comment * fix formatting * fix more formatting issues * use chests instead of iron block * fix formatting * make blocks with inventories that are broken drop the items * fix compiler error * fix formatting * fix formatting * Trigger GitHub Actions * add inventory saving to bin * fix formatting * fix formatting again * fix formatting again again * small change * current changes * thing * Chest patch w/o quantums suggestions * small test pls no merge * it works with a couple segfaults that may or may not be in the base game * final thing i think * block inventories * haha * another thing * fix formatting * fix formatting again * remove saving for now * remove a comment * remove more comments * dont store inventory on the client * something * hardcode stuff for the future * remove getwindow * fix formatting * fixes --------- Co-authored-by: Krzysztof Wiśniewski <argmaster.world@gmail.com>
35 lines
1.8 KiB
Zig
35 lines
1.8 KiB
Zig
pub const advanced_controls = @import("advanced_controls.zig");
|
|
pub const change_name = @import("change_name.zig");
|
|
pub const chat = @import("chat.zig");
|
|
pub const chest = @import("chest.zig");
|
|
pub const controls = @import("controls.zig");
|
|
pub const creative_inventory = @import("creative_inventory.zig");
|
|
pub const crosshair = @import("crosshair.zig");
|
|
pub const debug_network = @import("debug_network.zig");
|
|
pub const debug_network_advanced = @import("debug_network_advanced.zig");
|
|
pub const debug = @import("debug.zig");
|
|
pub const delete_world_confirmation = @import("delete_world_confirmation.zig");
|
|
pub const download_controller_mappings = @import("download_controller_mappings.zig");
|
|
pub const energybar = @import("energybar.zig");
|
|
pub const error_prompt = @import("error_prompt.zig");
|
|
pub const gpu_performance_measuring = @import("gpu_performance_measuring.zig");
|
|
pub const graphics = @import("graphics.zig");
|
|
pub const healthbar = @import("healthbar.zig");
|
|
pub const hotbar = @import("hotbar.zig");
|
|
pub const inventory = @import("inventory.zig");
|
|
pub const inventory_crafting = @import("inventory_crafting.zig");
|
|
pub const invite = @import("invite.zig");
|
|
pub const main = @import("main.zig");
|
|
pub const manage_players = @import("manage_players.zig");
|
|
pub const multiplayer = @import("multiplayer.zig");
|
|
pub const notification = @import("notification.zig");
|
|
pub const pause = @import("pause.zig");
|
|
pub const pause_gear = @import("pause_gear.zig");
|
|
pub const performance_graph = @import("performance_graph.zig");
|
|
pub const save_creation = @import("save_creation.zig");
|
|
pub const save_selection = @import("save_selection.zig");
|
|
pub const settings = @import("settings.zig");
|
|
pub const shared_inventory_testing = @import("shared_inventory_testing.zig");
|
|
pub const sound = @import("sound.zig");
|
|
pub const workbench = @import("workbench.zig");
|