├── .github └── workflows │ ├── build.yml │ ├── rust.yml │ └── steam_staging.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── clippy.toml ├── cosmos_client ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── assets │ ├── adjectives.txt │ ├── animals.txt │ ├── cosmos │ │ ├── blocks │ │ │ ├── advanced_fabricator.json │ │ │ ├── and_gate.json │ │ │ ├── basic_fabricator.json │ │ │ ├── button.json │ │ │ ├── camera.json │ │ │ ├── cloning_bay_base.json │ │ │ ├── cloning_bay_top.json │ │ │ ├── debug.json │ │ │ ├── door_open.json │ │ │ ├── energy_cell.json │ │ │ ├── fan.json │ │ │ ├── flip_flop.json │ │ │ ├── glass.json │ │ │ ├── glass_aqua.json │ │ │ ├── glass_black.json │ │ │ ├── glass_blue.json │ │ │ ├── glass_brown.json │ │ │ ├── glass_cyan.json │ │ │ ├── glass_dark_grey.json │ │ │ ├── glass_green.json │ │ │ ├── glass_grey.json │ │ │ ├── glass_light_grey.json │ │ │ ├── glass_magenta.json │ │ │ ├── glass_mint.json │ │ │ ├── glass_orange.json │ │ │ ├── glass_pink.json │ │ │ ├── glass_purple.json │ │ │ ├── glass_red.json │ │ │ ├── glass_white.json │ │ │ ├── glass_yellow.json │ │ │ ├── grass.json │ │ │ ├── gravity_well.json │ │ │ ├── ice.json │ │ │ ├── laser_cannon.json │ │ │ ├── lava.json │ │ │ ├── light.json │ │ │ ├── light_aqua.json │ │ │ ├── light_black.json │ │ │ ├── light_blue.json │ │ │ ├── light_brown.json │ │ │ ├── light_cyan.json │ │ │ ├── light_dark_grey.json │ │ │ ├── light_green.json │ │ │ ├── light_grey.json │ │ │ ├── light_light_grey.json │ │ │ ├── light_magenta.json │ │ │ ├── light_mint.json │ │ │ ├── light_orange.json │ │ │ ├── light_pink.json │ │ │ ├── light_purple.json │ │ │ ├── light_red.json │ │ │ ├── light_white.json │ │ │ ├── light_yellow.json │ │ │ ├── logic_bus.json │ │ │ ├── logic_indicator.json │ │ │ ├── logic_on.json │ │ │ ├── logic_wire_aqua.json │ │ │ ├── logic_wire_black.json │ │ │ ├── logic_wire_blue.json │ │ │ ├── logic_wire_brown.json │ │ │ ├── logic_wire_cyan.json │ │ │ ├── logic_wire_dark_grey.json │ │ │ ├── logic_wire_green.json │ │ │ ├── logic_wire_grey.json │ │ │ ├── logic_wire_light_grey.json │ │ │ ├── logic_wire_magenta.json │ │ │ ├── logic_wire_mint.json │ │ │ ├── logic_wire_orange.json │ │ │ ├── logic_wire_pink.json │ │ │ ├── logic_wire_purple.json │ │ │ ├── logic_wire_red.json │ │ │ ├── logic_wire_white.json │ │ │ ├── logic_wire_yellow.json │ │ │ ├── missile_launcher.json │ │ │ ├── not_gate.json │ │ │ ├── numeric_display.json │ │ │ ├── or_gate.json │ │ │ ├── passive_generator.json │ │ │ ├── plasma_drill.json │ │ │ ├── power_cable.json │ │ │ ├── railgun_capacitor.json │ │ │ ├── railgun_launcher.json │ │ │ ├── ramp_aqua.json │ │ │ ├── ramp_black.json │ │ │ ├── ramp_blue.json │ │ │ ├── ramp_brown.json │ │ │ ├── ramp_cyan.json │ │ │ ├── ramp_dark_grey.json │ │ │ ├── ramp_green.json │ │ │ ├── ramp_grey.json │ │ │ ├── ramp_light_grey.json │ │ │ ├── ramp_magenta.json │ │ │ ├── ramp_mint.json │ │ │ ├── ramp_orange.json │ │ │ ├── ramp_pink.json │ │ │ ├── ramp_purple.json │ │ │ ├── ramp_red.json │ │ │ ├── ramp_white.json │ │ │ ├── ramp_yellow.json │ │ │ ├── reactor_cell.json │ │ │ ├── reactor_controller.json │ │ │ ├── reactor_window.json │ │ │ ├── redwood_log.json │ │ │ ├── shield_generator.json │ │ │ ├── shield_projector.json │ │ │ ├── ship_core.json │ │ │ ├── ship_dock.json │ │ │ ├── shipyard_controller.json │ │ │ ├── short_grass.json │ │ │ ├── station_core.json │ │ │ ├── switch.json │ │ │ ├── tank.json │ │ │ ├── thruster.json │ │ │ ├── warp_drive.json │ │ │ ├── water.json │ │ │ └── xor_gate.json │ │ ├── images │ │ │ ├── blocks │ │ │ │ ├── 2_input_gate_back.png │ │ │ │ ├── advanced_fabricator_bottom.png │ │ │ │ ├── advanced_fabricator_sides.png │ │ │ │ ├── advanced_fabricator_top.png │ │ │ │ ├── and_gate_top.png │ │ │ │ ├── basic_fabricator_sides.png │ │ │ │ ├── basic_fabricator_top_bottom.png │ │ │ │ ├── build_block.png │ │ │ │ ├── button_off.png │ │ │ │ ├── button_on.png │ │ │ │ ├── cactus.png │ │ │ │ ├── camera_front.png │ │ │ │ ├── cherry_leaf.png │ │ │ │ ├── cloning_bay_base.png │ │ │ │ ├── cloning_bay_base_sides.png │ │ │ │ ├── cloning_bay_top.png │ │ │ │ ├── cloning_bay_top_sides.png │ │ │ │ ├── cooling_mechanism.png │ │ │ │ ├── copper_ore.png │ │ │ │ ├── debug_back.png │ │ │ │ ├── debug_bottom.png │ │ │ │ ├── debug_front.png │ │ │ │ ├── debug_left.png │ │ │ │ ├── debug_right.png │ │ │ │ ├── debug_top.png │ │ │ │ ├── dirt.png │ │ │ │ ├── door.png │ │ │ │ ├── door_open.png │ │ │ │ ├── door_open_0.png │ │ │ │ ├── door_open_1.png │ │ │ │ ├── door_open_10.png │ │ │ │ ├── door_open_11.png │ │ │ │ ├── door_open_12.png │ │ │ │ ├── door_open_13.png │ │ │ │ ├── door_open_14.png │ │ │ │ ├── door_open_15.png │ │ │ │ ├── door_open_2.png │ │ │ │ ├── door_open_3.png │ │ │ │ ├── door_open_4.png │ │ │ │ ├── door_open_5.png │ │ │ │ ├── door_open_6.png │ │ │ │ ├── door_open_7.png │ │ │ │ ├── door_open_8.png │ │ │ │ ├── door_open_9.png │ │ │ │ ├── dye_machine.png │ │ │ │ ├── energite_crystal_ore.png │ │ │ │ ├── energy_cell.png │ │ │ │ ├── fan.png │ │ │ │ ├── flip_flop_input.png │ │ │ │ ├── flip_flop_off.png │ │ │ │ ├── flip_flop_on.png │ │ │ │ ├── glass_0.png │ │ │ │ ├── glass_1.png │ │ │ │ ├── glass_10.png │ │ │ │ ├── glass_11.png │ │ │ │ ├── glass_12.png │ │ │ │ ├── glass_13.png │ │ │ │ ├── glass_14.png │ │ │ │ ├── glass_15.png │ │ │ │ ├── glass_2.png │ │ │ │ ├── glass_3.png │ │ │ │ ├── glass_4.png │ │ │ │ ├── glass_5.png │ │ │ │ ├── glass_6.png │ │ │ │ ├── glass_7.png │ │ │ │ ├── glass_8.png │ │ │ │ ├── glass_9.png │ │ │ │ ├── glass_aqua_0.png │ │ │ │ ├── glass_aqua_1.png │ │ │ │ ├── glass_aqua_10.png │ │ │ │ ├── glass_aqua_11.png │ │ │ │ ├── glass_aqua_12.png │ │ │ │ ├── glass_aqua_13.png │ │ │ │ ├── glass_aqua_14.png │ │ │ │ ├── glass_aqua_15.png │ │ │ │ ├── glass_aqua_2.png │ │ │ │ ├── glass_aqua_3.png │ │ │ │ ├── glass_aqua_4.png │ │ │ │ ├── glass_aqua_5.png │ │ │ │ ├── glass_aqua_6.png │ │ │ │ ├── glass_aqua_7.png │ │ │ │ ├── glass_aqua_8.png │ │ │ │ ├── glass_aqua_9.png │ │ │ │ ├── glass_black_0.png │ │ │ │ ├── glass_black_1.png │ │ │ │ ├── glass_black_10.png │ │ │ │ ├── glass_black_11.png │ │ │ │ ├── glass_black_12.png │ │ │ │ ├── glass_black_13.png │ │ │ │ ├── glass_black_14.png │ │ │ │ ├── glass_black_15.png │ │ │ │ ├── glass_black_2.png │ │ │ │ ├── glass_black_3.png │ │ │ │ ├── glass_black_4.png │ │ │ │ ├── glass_black_5.png │ │ │ │ ├── glass_black_6.png │ │ │ │ ├── glass_black_7.png │ │ │ │ ├── glass_black_8.png │ │ │ │ ├── glass_black_9.png │ │ │ │ ├── glass_blue.png │ │ │ │ ├── glass_blue_0.png │ │ │ │ ├── glass_blue_1.png │ │ │ │ ├── glass_blue_10.png │ │ │ │ ├── glass_blue_11.png │ │ │ │ ├── glass_blue_12.png │ │ │ │ ├── glass_blue_13.png │ │ │ │ ├── glass_blue_14.png │ │ │ │ ├── glass_blue_15.png │ │ │ │ ├── glass_blue_2.png │ │ │ │ ├── glass_blue_3.png │ │ │ │ ├── glass_blue_4.png │ │ │ │ ├── glass_blue_5.png │ │ │ │ ├── glass_blue_6.png │ │ │ │ ├── glass_blue_7.png │ │ │ │ ├── glass_blue_8.png │ │ │ │ ├── glass_blue_9.png │ │ │ │ ├── glass_brown.png │ │ │ │ ├── glass_brown_0.png │ │ │ │ ├── glass_brown_1.png │ │ │ │ ├── glass_brown_10.png │ │ │ │ ├── glass_brown_11.png │ │ │ │ ├── glass_brown_12.png │ │ │ │ ├── glass_brown_13.png │ │ │ │ ├── glass_brown_14.png │ │ │ │ ├── glass_brown_15.png │ │ │ │ ├── glass_brown_2.png │ │ │ │ ├── glass_brown_3.png │ │ │ │ ├── glass_brown_4.png │ │ │ │ ├── glass_brown_5.png │ │ │ │ ├── glass_brown_6.png │ │ │ │ ├── glass_brown_7.png │ │ │ │ ├── glass_brown_8.png │ │ │ │ ├── glass_brown_9.png │ │ │ │ ├── glass_cyan_0.png │ │ │ │ ├── glass_cyan_1.png │ │ │ │ ├── glass_cyan_10.png │ │ │ │ ├── glass_cyan_11.png │ │ │ │ ├── glass_cyan_12.png │ │ │ │ ├── glass_cyan_13.png │ │ │ │ ├── glass_cyan_14.png │ │ │ │ ├── glass_cyan_15.png │ │ │ │ ├── glass_cyan_2.png │ │ │ │ ├── glass_cyan_3.png │ │ │ │ ├── glass_cyan_4.png │ │ │ │ ├── glass_cyan_5.png │ │ │ │ ├── glass_cyan_6.png │ │ │ │ ├── glass_cyan_7.png │ │ │ │ ├── glass_cyan_8.png │ │ │ │ ├── glass_cyan_9.png │ │ │ │ ├── glass_dark_blue.png │ │ │ │ ├── glass_dark_green.png │ │ │ │ ├── glass_dark_grey_0.png │ │ │ │ ├── glass_dark_grey_1.png │ │ │ │ ├── glass_dark_grey_10.png │ │ │ │ ├── glass_dark_grey_11.png │ │ │ │ ├── glass_dark_grey_12.png │ │ │ │ ├── glass_dark_grey_13.png │ │ │ │ ├── glass_dark_grey_14.png │ │ │ │ ├── glass_dark_grey_15.png │ │ │ │ ├── glass_dark_grey_2.png │ │ │ │ ├── glass_dark_grey_3.png │ │ │ │ ├── glass_dark_grey_4.png │ │ │ │ ├── glass_dark_grey_5.png │ │ │ │ ├── glass_dark_grey_6.png │ │ │ │ ├── glass_dark_grey_7.png │ │ │ │ ├── glass_dark_grey_8.png │ │ │ │ ├── glass_dark_grey_9.png │ │ │ │ ├── glass_dark_orange.png │ │ │ │ ├── glass_dark_pink.png │ │ │ │ ├── glass_dark_purple.png │ │ │ │ ├── glass_dark_red.png │ │ │ │ ├── glass_dark_yellow.png │ │ │ │ ├── glass_green.png │ │ │ │ ├── glass_green_0.png │ │ │ │ ├── glass_green_1.png │ │ │ │ ├── glass_green_10.png │ │ │ │ ├── glass_green_11.png │ │ │ │ ├── glass_green_12.png │ │ │ │ ├── glass_green_13.png │ │ │ │ ├── glass_green_14.png │ │ │ │ ├── glass_green_15.png │ │ │ │ ├── glass_green_2.png │ │ │ │ ├── glass_green_3.png │ │ │ │ ├── glass_green_4.png │ │ │ │ ├── glass_green_5.png │ │ │ │ ├── glass_green_6.png │ │ │ │ ├── glass_green_7.png │ │ │ │ ├── glass_green_8.png │ │ │ │ ├── glass_green_9.png │ │ │ │ ├── glass_grey_0.png │ │ │ │ ├── glass_grey_1.png │ │ │ │ ├── glass_grey_10.png │ │ │ │ ├── glass_grey_11.png │ │ │ │ ├── glass_grey_12.png │ │ │ │ ├── glass_grey_13.png │ │ │ │ ├── glass_grey_14.png │ │ │ │ ├── glass_grey_15.png │ │ │ │ ├── glass_grey_2.png │ │ │ │ ├── glass_grey_3.png │ │ │ │ ├── glass_grey_4.png │ │ │ │ ├── glass_grey_5.png │ │ │ │ ├── glass_grey_6.png │ │ │ │ ├── glass_grey_7.png │ │ │ │ ├── glass_grey_8.png │ │ │ │ ├── glass_grey_9.png │ │ │ │ ├── glass_light_grey_0.png │ │ │ │ ├── glass_light_grey_1.png │ │ │ │ ├── glass_light_grey_10.png │ │ │ │ ├── glass_light_grey_11.png │ │ │ │ ├── glass_light_grey_12.png │ │ │ │ ├── glass_light_grey_13.png │ │ │ │ ├── glass_light_grey_14.png │ │ │ │ ├── glass_light_grey_15.png │ │ │ │ ├── glass_light_grey_2.png │ │ │ │ ├── glass_light_grey_3.png │ │ │ │ ├── glass_light_grey_4.png │ │ │ │ ├── glass_light_grey_5.png │ │ │ │ ├── glass_light_grey_6.png │ │ │ │ ├── glass_light_grey_7.png │ │ │ │ ├── glass_light_grey_8.png │ │ │ │ ├── glass_light_grey_9.png │ │ │ │ ├── glass_magenta_0.png │ │ │ │ ├── glass_magenta_1.png │ │ │ │ ├── glass_magenta_10.png │ │ │ │ ├── glass_magenta_11.png │ │ │ │ ├── glass_magenta_12.png │ │ │ │ ├── glass_magenta_13.png │ │ │ │ ├── glass_magenta_14.png │ │ │ │ ├── glass_magenta_15.png │ │ │ │ ├── glass_magenta_2.png │ │ │ │ ├── glass_magenta_3.png │ │ │ │ ├── glass_magenta_4.png │ │ │ │ ├── glass_magenta_5.png │ │ │ │ ├── glass_magenta_6.png │ │ │ │ ├── glass_magenta_7.png │ │ │ │ ├── glass_magenta_8.png │ │ │ │ ├── glass_magenta_9.png │ │ │ │ ├── glass_mint.png │ │ │ │ ├── glass_mint_0.png │ │ │ │ ├── glass_mint_1.png │ │ │ │ ├── glass_mint_10.png │ │ │ │ ├── glass_mint_11.png │ │ │ │ ├── glass_mint_12.png │ │ │ │ ├── glass_mint_13.png │ │ │ │ ├── glass_mint_14.png │ │ │ │ ├── glass_mint_15.png │ │ │ │ ├── glass_mint_2.png │ │ │ │ ├── glass_mint_3.png │ │ │ │ ├── glass_mint_4.png │ │ │ │ ├── glass_mint_5.png │ │ │ │ ├── glass_mint_6.png │ │ │ │ ├── glass_mint_7.png │ │ │ │ ├── glass_mint_8.png │ │ │ │ ├── glass_mint_9.png │ │ │ │ ├── glass_orange.png │ │ │ │ ├── glass_orange_0.png │ │ │ │ ├── glass_orange_1.png │ │ │ │ ├── glass_orange_10.png │ │ │ │ ├── glass_orange_11.png │ │ │ │ ├── glass_orange_12.png │ │ │ │ ├── glass_orange_13.png │ │ │ │ ├── glass_orange_14.png │ │ │ │ ├── glass_orange_15.png │ │ │ │ ├── glass_orange_2.png │ │ │ │ ├── glass_orange_3.png │ │ │ │ ├── glass_orange_4.png │ │ │ │ ├── glass_orange_5.png │ │ │ │ ├── glass_orange_6.png │ │ │ │ ├── glass_orange_7.png │ │ │ │ ├── glass_orange_8.png │ │ │ │ ├── glass_orange_9.png │ │ │ │ ├── glass_pink.png │ │ │ │ ├── glass_pink_0.png │ │ │ │ ├── glass_pink_1.png │ │ │ │ ├── glass_pink_10.png │ │ │ │ ├── glass_pink_11.png │ │ │ │ ├── glass_pink_12.png │ │ │ │ ├── glass_pink_13.png │ │ │ │ ├── glass_pink_14.png │ │ │ │ ├── glass_pink_15.png │ │ │ │ ├── glass_pink_2.png │ │ │ │ ├── glass_pink_3.png │ │ │ │ ├── glass_pink_4.png │ │ │ │ ├── glass_pink_5.png │ │ │ │ ├── glass_pink_6.png │ │ │ │ ├── glass_pink_7.png │ │ │ │ ├── glass_pink_8.png │ │ │ │ ├── glass_pink_9.png │ │ │ │ ├── glass_purple.png │ │ │ │ ├── glass_purple_0.png │ │ │ │ ├── glass_purple_1.png │ │ │ │ ├── glass_purple_10.png │ │ │ │ ├── glass_purple_11.png │ │ │ │ ├── glass_purple_12.png │ │ │ │ ├── glass_purple_13.png │ │ │ │ ├── glass_purple_14.png │ │ │ │ ├── glass_purple_15.png │ │ │ │ ├── glass_purple_2.png │ │ │ │ ├── glass_purple_3.png │ │ │ │ ├── glass_purple_4.png │ │ │ │ ├── glass_purple_5.png │ │ │ │ ├── glass_purple_6.png │ │ │ │ ├── glass_purple_7.png │ │ │ │ ├── glass_purple_8.png │ │ │ │ ├── glass_purple_9.png │ │ │ │ ├── glass_red.png │ │ │ │ ├── glass_red_0.png │ │ │ │ ├── glass_red_1.png │ │ │ │ ├── glass_red_10.png │ │ │ │ ├── glass_red_11.png │ │ │ │ ├── glass_red_12.png │ │ │ │ ├── glass_red_13.png │ │ │ │ ├── glass_red_14.png │ │ │ │ ├── glass_red_15.png │ │ │ │ ├── glass_red_2.png │ │ │ │ ├── glass_red_3.png │ │ │ │ ├── glass_red_4.png │ │ │ │ ├── glass_red_5.png │ │ │ │ ├── glass_red_6.png │ │ │ │ ├── glass_red_7.png │ │ │ │ ├── glass_red_8.png │ │ │ │ ├── glass_red_9.png │ │ │ │ ├── glass_white.png │ │ │ │ ├── glass_white_0.png │ │ │ │ ├── glass_white_1.png │ │ │ │ ├── glass_white_10.png │ │ │ │ ├── glass_white_11.png │ │ │ │ ├── glass_white_12.png │ │ │ │ ├── glass_white_13.png │ │ │ │ ├── glass_white_14.png │ │ │ │ ├── glass_white_15.png │ │ │ │ ├── glass_white_2.png │ │ │ │ ├── glass_white_3.png │ │ │ │ ├── glass_white_4.png │ │ │ │ ├── glass_white_5.png │ │ │ │ ├── glass_white_6.png │ │ │ │ ├── glass_white_7.png │ │ │ │ ├── glass_white_8.png │ │ │ │ ├── glass_white_9.png │ │ │ │ ├── glass_yellow.png │ │ │ │ ├── glass_yellow_0.png │ │ │ │ ├── glass_yellow_1.png │ │ │ │ ├── glass_yellow_10.png │ │ │ │ ├── glass_yellow_11.png │ │ │ │ ├── glass_yellow_12.png │ │ │ │ ├── glass_yellow_13.png │ │ │ │ ├── glass_yellow_14.png │ │ │ │ ├── glass_yellow_15.png │ │ │ │ ├── glass_yellow_2.png │ │ │ │ ├── glass_yellow_3.png │ │ │ │ ├── glass_yellow_4.png │ │ │ │ ├── glass_yellow_5.png │ │ │ │ ├── glass_yellow_6.png │ │ │ │ ├── glass_yellow_7.png │ │ │ │ ├── glass_yellow_8.png │ │ │ │ ├── glass_yellow_9.png │ │ │ │ ├── grass_side.png │ │ │ │ ├── grass_top.png │ │ │ │ ├── gravitron_crystal_ore.png │ │ │ │ ├── gravity_well_sides.png │ │ │ │ ├── gravity_well_top_bottom.png │ │ │ │ ├── ice.png │ │ │ │ ├── iron_ore.png │ │ │ │ ├── laser_cannon_back.png │ │ │ │ ├── laser_cannon_front.png │ │ │ │ ├── laser_cannon_left_right.png │ │ │ │ ├── laser_cannon_top_bottom.png │ │ │ │ ├── lava.png │ │ │ │ ├── lead_ore.png │ │ │ │ ├── light.png │ │ │ │ ├── light_aqua.png │ │ │ │ ├── light_black.png │ │ │ │ ├── light_blue.png │ │ │ │ ├── light_brown.png │ │ │ │ ├── light_cyan.png │ │ │ │ ├── light_dark_grey.png │ │ │ │ ├── light_green.png │ │ │ │ ├── light_grey.png │ │ │ │ ├── light_light_grey.png │ │ │ │ ├── light_magenta.png │ │ │ │ ├── light_mint.png │ │ │ │ ├── light_orange.png │ │ │ │ ├── light_pink.png │ │ │ │ ├── light_purple.png │ │ │ │ ├── light_red.png │ │ │ │ ├── light_white.png │ │ │ │ ├── light_yellow.png │ │ │ │ ├── log_side.png │ │ │ │ ├── log_top_bottom.png │ │ │ │ ├── logic_block.png │ │ │ │ ├── logic_bus.png │ │ │ │ ├── logic_on.png │ │ │ │ ├── logic_pointing_left.png │ │ │ │ ├── logic_pointing_right.png │ │ │ │ ├── logic_pointing_up.png │ │ │ │ ├── logic_wire_aqua.png │ │ │ │ ├── logic_wire_black.png │ │ │ │ ├── logic_wire_blue.png │ │ │ │ ├── logic_wire_brown.png │ │ │ │ ├── logic_wire_cyan.png │ │ │ │ ├── logic_wire_dark_grey.png │ │ │ │ ├── logic_wire_green.png │ │ │ │ ├── logic_wire_grey.png │ │ │ │ ├── logic_wire_light_grey.png │ │ │ │ ├── logic_wire_magenta.png │ │ │ │ ├── logic_wire_mint.png │ │ │ │ ├── logic_wire_orange.png │ │ │ │ ├── logic_wire_pink.png │ │ │ │ ├── logic_wire_purple.png │ │ │ │ ├── logic_wire_red.png │ │ │ │ ├── logic_wire_white.png │ │ │ │ ├── logic_wire_yellow.png │ │ │ │ ├── loot_block.png │ │ │ │ ├── magnetic_rail.png │ │ │ │ ├── magnite_ore.png │ │ │ │ ├── missile_launcher_back.png │ │ │ │ ├── missile_launcher_front.png │ │ │ │ ├── missile_launcher_left_right.png │ │ │ │ ├── missile_launcher_top_bottom.png │ │ │ │ ├── missing.png │ │ │ │ ├── molten_stone.png │ │ │ │ ├── not_gate_top.png │ │ │ │ ├── numeric_display_0.png │ │ │ │ ├── numeric_display_1.png │ │ │ │ ├── numeric_display_2.png │ │ │ │ ├── numeric_display_3.png │ │ │ │ ├── numeric_display_4.png │ │ │ │ ├── numeric_display_5.png │ │ │ │ ├── numeric_display_6.png │ │ │ │ ├── numeric_display_7.png │ │ │ │ ├── numeric_display_8.png │ │ │ │ ├── numeric_display_9.png │ │ │ │ ├── numeric_display_blank.png │ │ │ │ ├── numeric_display_minus.png │ │ │ │ ├── or_gate_top.png │ │ │ │ ├── packed_ice.png │ │ │ │ ├── passive_generator.png │ │ │ │ ├── photonium_crystal_ore.png │ │ │ │ ├── plasma_drill_back.png │ │ │ │ ├── plasma_drill_front.png │ │ │ │ ├── plasma_drill_left_right.png │ │ │ │ ├── plasma_drill_top_bottom.png │ │ │ │ ├── power_cable.png │ │ │ │ ├── railgun_base.png │ │ │ │ ├── railgun_capacitor.png │ │ │ │ ├── railgun_launcher.png │ │ │ │ ├── ramp_aqua.png │ │ │ │ ├── ramp_black.png │ │ │ │ ├── ramp_blue.png │ │ │ │ ├── ramp_brown.png │ │ │ │ ├── ramp_cyan.png │ │ │ │ ├── ramp_dark_grey.png │ │ │ │ ├── ramp_green.png │ │ │ │ ├── ramp_grey.png │ │ │ │ ├── ramp_light_grey.png │ │ │ │ ├── ramp_magenta.png │ │ │ │ ├── ramp_mint.png │ │ │ │ ├── ramp_orange.png │ │ │ │ ├── ramp_pink.png │ │ │ │ ├── ramp_purple.png │ │ │ │ ├── ramp_red.png │ │ │ │ ├── ramp_white.png │ │ │ │ ├── ramp_yellow.png │ │ │ │ ├── reactor_casing.png │ │ │ │ ├── reactor_cell.png │ │ │ │ ├── reactor_controller.png │ │ │ │ ├── reactor_window_0.png │ │ │ │ ├── reactor_window_1.png │ │ │ │ ├── reactor_window_10.png │ │ │ │ ├── reactor_window_11.png │ │ │ │ ├── reactor_window_12.png │ │ │ │ ├── reactor_window_13.png │ │ │ │ ├── reactor_window_14.png │ │ │ │ ├── reactor_window_15.png │ │ │ │ ├── reactor_window_2.png │ │ │ │ ├── reactor_window_3.png │ │ │ │ ├── reactor_window_4.png │ │ │ │ ├── reactor_window_5.png │ │ │ │ ├── reactor_window_6.png │ │ │ │ ├── reactor_window_7.png │ │ │ │ ├── reactor_window_8.png │ │ │ │ ├── reactor_window_9.png │ │ │ │ ├── redwood_leaf.png │ │ │ │ ├── redwood_log_side.png │ │ │ │ ├── redwood_log_top_bottom.png │ │ │ │ ├── sand.png │ │ │ │ ├── shield_generator.png │ │ │ │ ├── shield_projector.png │ │ │ │ ├── ship_core.png │ │ │ │ ├── ship_dock.png │ │ │ │ ├── ship_hull.png │ │ │ │ ├── ship_hull_aqua.png │ │ │ │ ├── ship_hull_black.png │ │ │ │ ├── ship_hull_blue.png │ │ │ │ ├── ship_hull_brown.png │ │ │ │ ├── ship_hull_cyan.png │ │ │ │ ├── ship_hull_dark_grey.png │ │ │ │ ├── ship_hull_green.png │ │ │ │ ├── ship_hull_grey.png │ │ │ │ ├── ship_hull_light_grey.png │ │ │ │ ├── ship_hull_magenta.png │ │ │ │ ├── ship_hull_mint.png │ │ │ │ ├── ship_hull_orange.png │ │ │ │ ├── ship_hull_pink.png │ │ │ │ ├── ship_hull_purple.png │ │ │ │ ├── ship_hull_red.png │ │ │ │ ├── ship_hull_white.png │ │ │ │ ├── ship_hull_yellow.png │ │ │ │ ├── shipyard_controller.png │ │ │ │ ├── shipyard_controller_top_bottom.png │ │ │ │ ├── shipyard_frame.png │ │ │ │ ├── shop.png │ │ │ │ ├── short_grass.png │ │ │ │ ├── station_core.png │ │ │ │ ├── stone.png │ │ │ │ ├── storage.png │ │ │ │ ├── sulfur_ore.png │ │ │ │ ├── switch_off.png │ │ │ │ ├── switch_on.png │ │ │ │ ├── tank_0.png │ │ │ │ ├── tank_1.png │ │ │ │ ├── tank_10.png │ │ │ │ ├── tank_11.png │ │ │ │ ├── tank_12.png │ │ │ │ ├── tank_13.png │ │ │ │ ├── tank_14.png │ │ │ │ ├── tank_15.png │ │ │ │ ├── tank_2.png │ │ │ │ ├── tank_3.png │ │ │ │ ├── tank_4.png │ │ │ │ ├── tank_5.png │ │ │ │ ├── tank_6.png │ │ │ │ ├── tank_7.png │ │ │ │ ├── tank_8.png │ │ │ │ ├── tank_9.png │ │ │ │ ├── tank_top_bottom.png │ │ │ │ ├── thruster_back.png │ │ │ │ ├── thruster_front.png │ │ │ │ ├── thruster_left_right.png │ │ │ │ ├── thruster_top_bottom.png │ │ │ │ ├── uranium_ore.png │ │ │ │ ├── utility_block_base.png │ │ │ │ ├── warp_drive.png │ │ │ │ ├── water.png │ │ │ │ └── xor_gate_top.png │ │ │ ├── items │ │ │ │ ├── blueprint.png │ │ │ │ ├── copper_bar.png │ │ │ │ ├── energite_crystal.png │ │ │ │ ├── energite_crystal_2.png │ │ │ │ ├── fluid_cell.png │ │ │ │ ├── fluid_cell_filled.png │ │ │ │ ├── gravitron_crystal.png │ │ │ │ ├── iron_bar.png │ │ │ │ ├── lead_bar.png │ │ │ │ ├── magnite.png │ │ │ │ ├── missile.png │ │ │ │ ├── missing.png │ │ │ │ ├── photonium_crystal.png │ │ │ │ ├── sulfur.png │ │ │ │ ├── uranium.png │ │ │ │ └── uranium_fuel_cell.png │ │ │ ├── misc │ │ │ │ └── symmetry.png │ │ │ └── ui │ │ │ │ ├── close-coms.png │ │ │ │ ├── crosshair-indicating.png │ │ │ │ ├── crosshair.png │ │ │ │ ├── crosshair.xcf │ │ │ │ ├── diamond.png │ │ │ │ ├── hotbar-slot-selected.png │ │ │ │ ├── hotbar-slot-selected.xcf │ │ │ │ ├── hotbar-slot.png │ │ │ │ ├── hotbar-slot.xcf │ │ │ │ ├── inventory-close-button-pressed.png │ │ │ │ ├── inventory-close-button.png │ │ │ │ ├── inventory-footer.png │ │ │ │ ├── inventory-header.png │ │ │ │ ├── inventory-slot.png │ │ │ │ ├── missile-lockon.png │ │ │ │ └── open-coms.png │ │ ├── lang │ │ │ ├── blocks │ │ │ │ └── en_us.lang │ │ │ ├── categories │ │ │ │ └── en_us.lang │ │ │ ├── items │ │ │ │ ├── descriptions │ │ │ │ │ └── en_us.lang │ │ │ │ └── en_us.lang │ │ │ ├── quests │ │ │ │ └── en_us.lang │ │ │ ├── settings │ │ │ │ └── en_us.lang │ │ │ └── systems │ │ │ │ └── en_us.lang │ │ ├── models │ │ │ ├── blocks │ │ │ │ ├── base_back.stupid │ │ │ │ ├── base_bottom.stupid │ │ │ │ ├── base_front.stupid │ │ │ │ ├── base_left.stupid │ │ │ │ ├── base_right.stupid │ │ │ │ ├── base_top.stupid │ │ │ │ ├── logic_wire_back.stupid │ │ │ │ ├── logic_wire_back_connected.stupid │ │ │ │ ├── logic_wire_bottom.stupid │ │ │ │ ├── logic_wire_bottom_connected.stupid │ │ │ │ ├── logic_wire_front.stupid │ │ │ │ ├── logic_wire_front_connected.stupid │ │ │ │ ├── logic_wire_left.stupid │ │ │ │ ├── logic_wire_left_connected.stupid │ │ │ │ ├── logic_wire_right.stupid │ │ │ │ ├── logic_wire_right_connected.stupid │ │ │ │ ├── logic_wire_top.stupid │ │ │ │ ├── logic_wire_top_connected.stupid │ │ │ │ ├── power_cable_back.stupid │ │ │ │ ├── power_cable_back_connected.stupid │ │ │ │ ├── power_cable_bottom.stupid │ │ │ │ ├── power_cable_bottom_connected.stupid │ │ │ │ ├── power_cable_front.stupid │ │ │ │ ├── power_cable_front_connected.stupid │ │ │ │ ├── power_cable_left.stupid │ │ │ │ ├── power_cable_left_connected.stupid │ │ │ │ ├── power_cable_right.stupid │ │ │ │ ├── power_cable_right_connected.stupid │ │ │ │ ├── power_cable_top.stupid │ │ │ │ ├── power_cable_top_connected.stupid │ │ │ │ ├── ramp.stupid │ │ │ │ └── short_grass.stupid │ │ │ └── misc │ │ │ │ ├── missile.blend │ │ │ │ ├── missile.blend1 │ │ │ │ ├── missile.mtl │ │ │ │ ├── missile.obj │ │ │ │ ├── person.glb │ │ │ │ ├── person.mtl │ │ │ │ └── person.obj │ │ ├── shaders │ │ │ ├── animated.wgsl │ │ │ ├── animated_prepass.wgsl │ │ │ ├── block.wgsl │ │ │ ├── block_prepass.wgsl │ │ │ ├── lod.wgsl │ │ │ ├── repeated.wgsl │ │ │ ├── shield.wgsl │ │ │ └── simplex3d.wgsl │ │ └── sounds │ │ │ ├── music │ │ │ ├── antirock.json │ │ │ ├── antirock.ogg │ │ │ ├── credits.txt │ │ │ ├── mana-two-part-one.json │ │ │ ├── mana-two-part-one.ogg │ │ │ ├── mana-two-part-three.json │ │ │ ├── mana-two-part-three.ogg │ │ │ ├── mana-two-part-two.json │ │ │ └── mana-two-part-two.ogg │ │ │ └── sfx │ │ │ ├── 412172__inspectorj__cinematic-hit-distorted-a.wav │ │ │ ├── 423118__ogsoundfx__guns-explosions-album-railgun-shot-6.wav │ │ │ ├── 465541__steaq__sci-fi-shield-hit-ogg.ogg │ │ │ ├── 649076__valentinpetiteau__wood-stairs-creak-squeak-plank-bend.wav │ │ │ ├── beep-beep.ogg │ │ │ ├── belt.ogg │ │ │ ├── break.ogg │ │ │ ├── credits.txt │ │ │ ├── engine-idle.ogg │ │ │ ├── explosion-1.ogg │ │ │ ├── explosion-2.ogg │ │ │ ├── explosion-3.ogg │ │ │ ├── explosion-4.ogg │ │ │ ├── laser-fire-1.ogg │ │ │ ├── laser-fire-2.ogg │ │ │ ├── laser-fire-3.ogg │ │ │ ├── lock-on.wav │ │ │ ├── locked-on.wav │ │ │ ├── missile-launch-1.ogg │ │ │ ├── missile-launch-2.ogg │ │ │ ├── missile-targetted.ogg │ │ │ ├── missile-targetted.wav │ │ │ ├── place.ogg │ │ │ ├── plasma-drill.ogg │ │ │ ├── quest_complete.ogg │ │ │ ├── quest_complete.wav │ │ │ ├── railgun.ogg │ │ │ ├── temp │ │ │ ├── alert.wav │ │ │ └── temp │ │ │ ├── thruster-1.ogg │ │ │ ├── thruster-running.ogg │ │ │ ├── thud.ogg │ │ │ ├── warp-drive-shutdown.ogg │ │ │ └── warp-jump.ogg │ ├── fonts │ │ ├── License.txt │ │ ├── PixeloidMono.ttf │ │ ├── PixeloidSans-Bold.ttf │ │ ├── PixeloidSans.ttf │ │ └── info.txt │ └── skybox │ │ ├── main-menu-panorama.png │ │ └── skybox.png ├── src │ ├── asset │ │ ├── asset_loader.rs │ │ ├── asset_loading.rs │ │ ├── materials │ │ │ ├── animated_material.rs │ │ │ ├── block_materials.rs │ │ │ ├── lod_materials.rs │ │ │ ├── material_types │ │ │ │ ├── animated_material.rs │ │ │ │ ├── lod_material.rs │ │ │ │ ├── main_material.rs │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── shield.rs │ │ ├── mod.rs │ │ ├── repeating_material.rs │ │ └── texture_atlas.rs │ ├── audio │ │ ├── mod.rs │ │ ├── music │ │ │ ├── dynamic_music.rs │ │ │ └── mod.rs │ │ └── volume.rs │ ├── block │ │ ├── blocks │ │ │ ├── dye_machine.rs │ │ │ ├── logic.rs │ │ │ ├── mod.rs │ │ │ └── numeric_display.rs │ │ ├── lighting.rs │ │ ├── mod.rs │ │ └── multiblocks │ │ │ ├── mod.rs │ │ │ ├── reactor │ │ │ ├── mod.rs │ │ │ └── ui.rs │ │ │ └── shipyard │ │ │ └── mod.rs │ ├── camera │ │ ├── camera_controller.rs │ │ └── mod.rs │ ├── chat │ │ └── mod.rs │ ├── coms │ │ ├── mod.rs │ │ ├── systems.rs │ │ └── ui │ │ │ ├── coms_request.rs │ │ │ ├── main_ui.rs │ │ │ └── mod.rs │ ├── crafting │ │ ├── blocks │ │ │ ├── advanced_fabricator │ │ │ │ ├── mod.rs │ │ │ │ └── ui.rs │ │ │ ├── basic_fabricator │ │ │ │ ├── mod.rs │ │ │ │ └── ui.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── recipes │ │ │ ├── advanced_fabricator.rs │ │ │ ├── basic_fabricator.rs │ │ │ └── mod.rs │ ├── debug │ │ └── mod.rs │ ├── economy │ │ └── mod.rs │ ├── ecs │ │ └── mod.rs │ ├── entities │ │ ├── health.rs │ │ ├── mod.rs │ │ └── player │ │ │ ├── death.rs │ │ │ ├── mod.rs │ │ │ ├── player_movement.rs │ │ │ └── render_distance.rs │ ├── events │ │ ├── block │ │ │ ├── block_events.rs │ │ │ └── mod.rs │ │ └── mod.rs │ ├── input │ │ ├── inputs.rs │ │ └── mod.rs │ ├── interactions │ │ ├── block_interactions.rs │ │ └── mod.rs │ ├── inventory │ │ ├── mod.rs │ │ └── netty.rs │ ├── item │ │ ├── descriptions.rs │ │ ├── item_mesh.rs │ │ ├── mod.rs │ │ ├── physical_item.rs │ │ └── usable │ │ │ ├── blueprint.rs │ │ │ └── mod.rs │ ├── lang │ │ ├── load_langs.rs │ │ └── mod.rs │ ├── loading │ │ └── mod.rs │ ├── main.rs │ ├── netty │ │ ├── connect.rs │ │ ├── gameplay │ │ │ ├── mod.rs │ │ │ ├── receiver.rs │ │ │ └── sync │ │ │ │ ├── mod.rs │ │ │ │ └── sync_player.rs │ │ ├── loading.rs │ │ ├── lobby.rs │ │ ├── mod.rs │ │ ├── steam.rs │ │ └── sync │ │ │ ├── component │ │ │ └── mod.rs │ │ │ └── mod.rs │ ├── notifications │ │ └── mod.rs │ ├── physics │ │ ├── collider_disabling.rs │ │ └── mod.rs │ ├── plugin │ │ ├── client_plugin.rs │ │ └── mod.rs │ ├── projectiles │ │ ├── lasers.rs │ │ ├── missile.rs │ │ └── mod.rs │ ├── quest │ │ ├── lang.rs │ │ ├── mod.rs │ │ ├── ui │ │ │ ├── hud.rs │ │ │ └── mod.rs │ │ └── waypoint.rs │ ├── rendering │ │ ├── custom_blocks │ │ │ ├── logic_indicator.rs │ │ │ ├── mod.rs │ │ │ ├── numeric_display.rs │ │ │ └── tank.rs │ │ ├── lod_renderer.rs │ │ ├── mesh_delayer.rs │ │ ├── mod.rs │ │ ├── panorama │ │ │ └── mod.rs │ │ └── structure_renderer │ │ │ ├── chunk_rendering │ │ │ ├── async_rendering.rs │ │ │ ├── chunk_renderer.rs │ │ │ ├── lod_rendering.rs │ │ │ ├── mod.rs │ │ │ └── neighbor_checking.rs │ │ │ ├── mesh_builder.rs │ │ │ ├── mod.rs │ │ │ └── monitor_needs_rerendered_chunks.rs │ ├── settings │ │ └── mod.rs │ ├── shop │ │ ├── mod.rs │ │ ├── netty.rs │ │ └── ui.rs │ ├── skybox │ │ └── mod.rs │ ├── structure │ │ ├── asteroid │ │ │ ├── mod.rs │ │ │ └── sync.rs │ │ ├── audio │ │ │ ├── break_place_block_sound.rs │ │ │ ├── mod.rs │ │ │ └── take_damage_sound.rs │ │ ├── chunk_retreiver.rs │ │ ├── events.rs │ │ ├── mod.rs │ │ ├── planet │ │ │ ├── align_player.rs │ │ │ ├── biosphere.rs │ │ │ ├── generation.rs │ │ │ ├── lods │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ ├── planet_skybox.rs │ │ │ └── rotate_around_planet.rs │ │ ├── shared │ │ │ ├── build_mode.rs │ │ │ └── mod.rs │ │ ├── shields │ │ │ └── mod.rs │ │ ├── ship │ │ │ ├── client_ship_builder.rs │ │ │ ├── create_ship.rs │ │ │ ├── mod.rs │ │ │ ├── pilot.rs │ │ │ ├── ship_movement.rs │ │ │ └── ui │ │ │ │ ├── details.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── ship_config_menu.rs │ │ │ │ ├── ship_systems.rs │ │ │ │ └── system_hotbar.rs │ │ ├── station │ │ │ ├── create_station.rs │ │ │ └── mod.rs │ │ └── systems │ │ │ ├── camera_system.rs │ │ │ ├── dock_system.rs │ │ │ ├── energy_generation_system.rs │ │ │ ├── energy_storage_system.rs │ │ │ ├── laser_cannon_system.rs │ │ │ ├── mining_laser_system.rs │ │ │ ├── missile_launcher_system.rs │ │ │ ├── mod.rs │ │ │ ├── player_interactions.rs │ │ │ ├── railgun_system.rs │ │ │ ├── shield_system.rs │ │ │ ├── sync.rs │ │ │ ├── thruster_system.rs │ │ │ └── warp │ │ │ ├── mod.rs │ │ │ └── warp_drive.rs │ ├── ui │ │ ├── components │ │ │ ├── button.rs │ │ │ ├── mod.rs │ │ │ ├── modal │ │ │ │ ├── confirm_modal.rs │ │ │ │ ├── mod.rs │ │ │ │ └── text_modal.rs │ │ │ ├── scollable_container.rs │ │ │ ├── show_cursor.rs │ │ │ ├── slider.rs │ │ │ ├── tabbed_view.rs │ │ │ ├── text_input.rs │ │ │ └── window.rs │ │ ├── constants.rs │ │ ├── crosshair.rs │ │ ├── debug_info_display.rs │ │ ├── focus_cam │ │ │ └── mod.rs │ │ ├── font.rs │ │ ├── hide.rs │ │ ├── hotbar.rs │ │ ├── hud │ │ │ ├── alignment.rs │ │ │ ├── error.rs │ │ │ ├── interactable_block.rs │ │ │ ├── looking_at_tooltips │ │ │ │ ├── mod.rs │ │ │ │ ├── railgun.rs │ │ │ │ └── warp_drive.rs │ │ │ ├── mod.rs │ │ │ └── tooltip.rs │ │ ├── item_renderer │ │ │ ├── mod.rs │ │ │ └── photo_booth.rs │ │ ├── main_menu │ │ │ ├── disconnect_screen │ │ │ │ └── mod.rs │ │ │ ├── menu_panorama.rs │ │ │ ├── mod.rs │ │ │ ├── multiplayer_screen │ │ │ │ └── mod.rs │ │ │ ├── settings_screen │ │ │ │ └── mod.rs │ │ │ ├── singleplayer_screen │ │ │ │ └── mod.rs │ │ │ ├── title_screen │ │ │ │ └── mod.rs │ │ │ └── triggers.rs │ │ ├── master_menu │ │ │ ├── faction.rs │ │ │ ├── mod.rs │ │ │ └── quest.rs │ │ ├── message.rs │ │ ├── mod.rs │ │ ├── pause │ │ │ └── mod.rs │ │ ├── reactivity │ │ │ ├── mod.rs │ │ │ ├── node.rs │ │ │ ├── slider.rs │ │ │ ├── text.rs │ │ │ └── text_input.rs │ │ ├── settings │ │ │ └── mod.rs │ │ └── ship_flight │ │ │ ├── indicators.rs │ │ │ ├── mod.rs │ │ │ └── stats_display.rs │ ├── universe │ │ ├── map │ │ │ ├── mod.rs │ │ │ └── waypoint.rs │ │ ├── mod.rs │ │ └── star.rs │ └── window │ │ ├── fullscreen_toggle.rs │ │ ├── mod.rs │ │ └── setup.rs └── steam_appid.txt ├── cosmos_core ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ ├── block │ ├── block_builder.rs │ ├── block_direction.rs │ ├── block_events.rs │ ├── block_face.rs │ ├── block_rotation.rs │ ├── block_update.rs │ ├── blocks │ │ ├── fluid.rs │ │ └── mod.rs │ ├── data │ │ ├── mod.rs │ │ └── persistence.rs │ ├── mod.rs │ ├── multiblock │ │ ├── mod.rs │ │ ├── prelude.rs │ │ ├── reactor.rs │ │ ├── rectangle.rs │ │ └── shipyard.rs │ └── specific_blocks │ │ ├── dye_machine.rs │ │ ├── gravity_well.rs │ │ ├── mod.rs │ │ └── numeric_display.rs │ ├── blockitems │ └── mod.rs │ ├── chat │ └── mod.rs │ ├── commands │ └── mod.rs │ ├── coms │ ├── events.rs │ ├── mod.rs │ └── systems.rs │ ├── crafting │ ├── blocks │ │ ├── advanced_fabricator.rs │ │ ├── basic_fabricator.rs │ │ └── mod.rs │ ├── mod.rs │ └── recipes │ │ ├── advanced_fabricator.rs │ │ ├── basic_fabricator.rs │ │ └── mod.rs │ ├── creative │ └── mod.rs │ ├── debug │ └── mod.rs │ ├── economy │ └── mod.rs │ ├── ecs │ ├── data.rs │ ├── mod.rs │ ├── mut_events.rs │ ├── sets.rs │ └── types.rs │ ├── entities │ ├── health.rs │ ├── mod.rs │ └── player │ │ ├── creative.rs │ │ ├── mod.rs │ │ ├── render_distance.rs │ │ └── respawn.rs │ ├── events │ ├── block_events.rs │ ├── mod.rs │ ├── structure │ │ ├── change_pilot_event.rs │ │ ├── mod.rs │ │ ├── ship │ │ │ ├── mod.rs │ │ │ └── pilot_change_event_listener.rs │ │ └── structure_event.rs │ └── wrappers │ │ ├── cancellable_event.rs │ │ └── mod.rs │ ├── faction │ ├── events.rs │ └── mod.rs │ ├── fluid │ ├── data.rs │ ├── mod.rs │ └── registry.rs │ ├── inventory │ ├── held_item_slot.rs │ ├── itemstack.rs │ ├── mod.rs │ └── netty.rs │ ├── item │ ├── item_category.rs │ ├── items │ │ └── mod.rs │ ├── mod.rs │ ├── physical_item.rs │ └── usable │ │ ├── blueprint.rs │ │ ├── cooldown.rs │ │ └── mod.rs │ ├── lib.rs │ ├── loader │ └── mod.rs │ ├── logic │ └── mod.rs │ ├── netty │ ├── client │ │ └── mod.rs │ ├── client_preconnect_messages.rs │ ├── client_registry.rs │ ├── client_reliable_messages.rs │ ├── client_unreliable_messages.rs │ ├── cosmos_encoder.rs │ ├── mod.rs │ ├── netty_rigidbody.rs │ ├── server │ │ └── mod.rs │ ├── server_laser_cannon_system_messages.rs │ ├── server_registry.rs │ ├── server_reliable_messages.rs │ ├── server_replication.rs │ ├── server_unreliable_messages.rs │ ├── sync │ │ ├── client_syncing.rs │ │ ├── events │ │ │ ├── client_event.rs │ │ │ ├── mod.rs │ │ │ ├── netty_event.rs │ │ │ └── server_event.rs │ │ ├── mapping.rs │ │ ├── mod.rs │ │ ├── registry │ │ │ ├── client.rs │ │ │ ├── mod.rs │ │ │ └── server.rs │ │ ├── resources │ │ │ ├── client.rs │ │ │ ├── mod.rs │ │ │ └── server.rs │ │ ├── server_entity_syncing.rs │ │ └── server_syncing.rs │ ├── system_sets.rs │ └── world_tick.rs │ ├── notifications │ └── mod.rs │ ├── persistence │ └── mod.rs │ ├── physics │ ├── block_colliders.rs │ ├── collision_handling.rs │ ├── disable_rigid_body.rs │ ├── gravity_system.rs │ ├── location │ │ ├── mod.rs │ │ └── systems.rs │ ├── mod.rs │ ├── player_world.rs │ ├── stop_near_unloaded_chunks.rs │ └── structure_physics.rs │ ├── plugin │ ├── cosmos_core_plugin.rs │ └── mod.rs │ ├── prelude.rs │ ├── projectiles │ ├── causer.rs │ ├── laser.rs │ ├── missile.rs │ ├── mod.rs │ └── raycast.rs │ ├── quest │ └── mod.rs │ ├── registry │ ├── identifiable.rs │ ├── many_to_one.rs │ ├── mod.rs │ └── one_to_one.rs │ ├── shop │ ├── mod.rs │ └── netty.rs │ ├── state │ └── mod.rs │ ├── structure │ ├── asteroid │ │ ├── asteroid_builder.rs │ │ ├── asteroid_netty.rs │ │ ├── loading.rs │ │ └── mod.rs │ ├── base_structure.rs │ ├── bevy_systems.rs │ ├── block_health │ │ ├── events.rs │ │ └── mod.rs │ ├── block_storage.rs │ ├── blueprint │ │ └── mod.rs │ ├── chunk │ │ ├── mod.rs │ │ ├── netty.rs │ │ └── systems.rs │ ├── coordinates.rs │ ├── dynamic_structure.rs │ ├── events.rs │ ├── full_structure.rs │ ├── loading │ │ └── mod.rs │ ├── lod.rs │ ├── lod_chunk.rs │ ├── mod.rs │ ├── persistence │ │ └── mod.rs │ ├── planet │ │ ├── biosphere.rs │ │ ├── generation │ │ │ ├── biome.rs │ │ │ ├── block_layers.rs │ │ │ ├── mod.rs │ │ │ └── terrain_generation.rs │ │ ├── mod.rs │ │ ├── planet_atmosphere.rs │ │ └── planet_builder.rs │ ├── prelude.rs │ ├── query.rs │ ├── shared │ │ ├── build_mode.rs │ │ └── mod.rs │ ├── shields │ │ └── mod.rs │ ├── ship │ │ ├── mod.rs │ │ ├── pilot.rs │ │ ├── ship_builder.rs │ │ ├── ship_movement.rs │ │ └── warp.rs │ ├── station │ │ ├── mod.rs │ │ └── station_builder.rs │ ├── structure_block.rs │ ├── structure_iterator.rs │ └── systems │ │ ├── camera_system.rs │ │ ├── dock_system.rs │ │ ├── energy_generation_system │ │ └── mod.rs │ │ ├── energy_storage_system │ │ └── mod.rs │ │ ├── laser_cannon_system │ │ └── mod.rs │ │ ├── line_system.rs │ │ ├── mining_laser_system.rs │ │ ├── missile_launcher_system.rs │ │ ├── mod.rs │ │ ├── railgun_system │ │ └── mod.rs │ │ ├── shield_system.rs │ │ ├── sync.rs │ │ ├── thruster_system │ │ └── mod.rs │ │ └── warp │ │ ├── mod.rs │ │ └── warp_drive.rs │ ├── time │ └── mod.rs │ ├── universe │ ├── map │ │ ├── mod.rs │ │ └── system.rs │ ├── mod.rs │ ├── star.rs │ └── warp │ │ └── mod.rs │ └── utils │ ├── array_utils.rs │ ├── ecs.rs │ ├── mod.rs │ ├── ownership.rs │ ├── quat_math.rs │ ├── random.rs │ ├── smooth_clamp.rs │ └── timer.rs ├── cosmos_server ├── .gitignore ├── Cargo.toml ├── assets │ └── cosmos │ │ ├── drops │ │ └── block │ │ │ ├── copper_ore.json │ │ │ ├── energite_crystal_ore.json │ │ │ ├── gravitron_crystal_ore.json │ │ │ ├── iron_ore.json │ │ │ ├── lead_ore.json │ │ │ ├── magnite_ore.json │ │ │ ├── photonium_crystal_ore.json │ │ │ ├── sulfur_ore.json │ │ │ └── uranium_ore.json │ │ ├── factions │ │ └── names │ │ │ ├── adjectives.txt │ │ │ └── nouns.txt │ │ ├── kits │ │ └── starter.json │ │ ├── loot │ │ ├── pirate_station_0.json │ │ └── tutorial_stash.json │ │ ├── recipes │ │ ├── advanced_fabricator │ │ │ ├── cooling_mechanism.json │ │ │ ├── magnetic_rail.json │ │ │ ├── railgun_capacitor.json │ │ │ └── railgun_launcher.json │ │ └── basic_fabricator │ │ │ ├── advanced_fabricator.json │ │ │ ├── and_gate.json │ │ │ ├── basic_fabricator.json │ │ │ ├── build_block.json │ │ │ ├── button.json │ │ │ ├── camera.json │ │ │ ├── copper_bar.json │ │ │ ├── door.json │ │ │ ├── dye_machine.json │ │ │ ├── energite_crystal.json │ │ │ ├── energy_cell.json │ │ │ ├── fan.json │ │ │ ├── flip_flop.json │ │ │ ├── fluid_cell.json │ │ │ ├── glass.json │ │ │ ├── gravitron_crystal.json │ │ │ ├── gravity_well.json │ │ │ ├── iron_bar.json │ │ │ ├── laser_cannon.json │ │ │ ├── lead_bar.json │ │ │ ├── light.json │ │ │ ├── logic_bus.json │ │ │ ├── logic_indicator.json │ │ │ ├── logic_on.json │ │ │ ├── logic_wire_white.json │ │ │ ├── missile.json │ │ │ ├── missile_launcher.json │ │ │ ├── not_gate.json │ │ │ ├── numeric_display.json │ │ │ ├── or_gate.json │ │ │ ├── passive_generator.json │ │ │ ├── photonium_crystal.json │ │ │ ├── plasma_drill.json │ │ │ ├── power_cable.json │ │ │ ├── ramp_dark_grey.json │ │ │ ├── reactor_casing.json │ │ │ ├── reactor_cell.json │ │ │ ├── reactor_controller.json │ │ │ ├── reactor_window.json │ │ │ ├── shield_generator.json │ │ │ ├── shield_projector.json │ │ │ ├── ship_core.json │ │ │ ├── ship_dock.json │ │ │ ├── ship_hull_dark_grey.json │ │ │ ├── shipyard_controller.json │ │ │ ├── shipyard_frame.json │ │ │ ├── station_core.json │ │ │ ├── storage.json │ │ │ ├── sulfur.json │ │ │ ├── switch.json │ │ │ ├── tank.json │ │ │ ├── thruster.json │ │ │ ├── uranium.json │ │ │ ├── uranium_fuel_cell.json │ │ │ ├── warp_drive.json │ │ │ └── xor_gate.json │ │ └── shaders │ │ └── biosphere │ │ ├── biospheres │ │ ├── grass.wgsl │ │ ├── ice.wgsl │ │ └── molten.wgsl │ │ ├── default_generation.wgsl │ │ ├── generation_utils.wgsl │ │ └── main.wgsl ├── config │ └── cosmos │ │ └── default_shop.json ├── default_blueprints │ ├── faction │ │ └── stations │ │ │ ├── capitol.bp │ │ │ ├── default.bp │ │ │ ├── shop.bp │ │ │ └── shop.bp.bak │ ├── merchant │ │ ├── default_0.bp │ │ └── default_0.bp.bak │ ├── pirate │ │ ├── default_0.bp │ │ ├── default_1.bp │ │ ├── default_2.bp │ │ ├── default_3.bp │ │ ├── default_4.bp │ │ └── stations │ │ │ ├── default.bp │ │ │ └── default.bp.bak │ ├── quests │ │ └── tutorial │ │ │ ├── abandon_stash.bp │ │ │ ├── abandon_stash.bp.bak │ │ │ └── mini_pirate.bp │ └── shop │ │ ├── default.bp │ │ └── default.bp.bak ├── src │ ├── ai │ │ ├── combat.rs │ │ ├── hit_tracking │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── pirate │ │ │ ├── mod.rs │ │ │ ├── ship_ai.rs │ │ │ └── station.rs │ │ └── quest_npc │ │ │ └── mod.rs │ ├── blocks │ │ ├── block_events.rs │ │ ├── data │ │ │ ├── instances │ │ │ │ ├── advanced_fabricator.rs │ │ │ │ ├── basic_fabricator.rs │ │ │ │ ├── dye_machine.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── railgun.rs │ │ │ │ └── storage.rs │ │ │ ├── mod.rs │ │ │ └── utils.rs │ │ ├── drops │ │ │ ├── mod.rs │ │ │ └── specific.rs │ │ ├── interactable │ │ │ ├── door.rs │ │ │ ├── dye_machine.rs │ │ │ ├── gravity_well.rs │ │ │ ├── mod.rs │ │ │ ├── ship_core.rs │ │ │ └── storage.rs │ │ ├── mod.rs │ │ ├── multiblock │ │ │ ├── mod.rs │ │ │ ├── reactor │ │ │ │ ├── impls.rs │ │ │ │ └── mod.rs │ │ │ └── shipyard │ │ │ │ ├── impls.rs │ │ │ │ └── mod.rs │ │ └── updates │ │ │ ├── grass_update.rs │ │ │ └── mod.rs │ ├── chat │ │ ├── mod.rs │ │ └── text_chat.rs │ ├── commands │ │ ├── cosmos_command_handler.rs │ │ ├── impls │ │ │ ├── blueprint.rs │ │ │ ├── blueprints.rs │ │ │ ├── despawn.rs │ │ │ ├── gamemode.rs │ │ │ ├── give.rs │ │ │ ├── items.rs │ │ │ ├── list.rs │ │ │ ├── load.rs │ │ │ ├── mod.rs │ │ │ ├── op.rs │ │ │ ├── ping.rs │ │ │ ├── save.rs │ │ │ ├── say.rs │ │ │ └── stop.rs │ │ ├── mod.rs │ │ ├── operator.rs │ │ └── prelude.rs │ ├── coms │ │ ├── mod.rs │ │ └── systems.rs │ ├── converters │ │ └── mod.rs │ ├── crafting │ │ ├── blocks │ │ │ ├── advanced_fabricator.rs │ │ │ ├── basic_fabricator.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── recipes │ │ │ ├── advanced_fabricator.rs │ │ │ ├── basic_fabricator.rs │ │ │ └── mod.rs │ ├── creative │ │ └── mod.rs │ ├── economy │ │ └── mod.rs │ ├── entities │ │ ├── health.rs │ │ ├── mod.rs │ │ └── player │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ ├── respawn.rs │ │ │ ├── spawn_player.rs │ │ │ └── strength.rs │ ├── faction │ │ ├── events.rs │ │ └── mod.rs │ ├── fluid │ │ ├── interact_fluid.rs │ │ ├── mod.rs │ │ ├── register_blocks.rs │ │ └── tank.rs │ ├── init │ │ ├── init_server.rs │ │ ├── init_world.rs │ │ └── mod.rs │ ├── inventory │ │ ├── block_events.rs │ │ ├── mod.rs │ │ └── netty.rs │ ├── items │ │ ├── categories.rs │ │ ├── mod.rs │ │ └── usable │ │ │ ├── blueprint.rs │ │ │ └── mod.rs │ ├── local │ │ └── mod.rs │ ├── logic │ │ ├── logic_driver.rs │ │ ├── logic_graph.rs │ │ ├── mod.rs │ │ └── specific_blocks │ │ │ ├── and_gate.rs │ │ │ ├── button.rs │ │ │ ├── colored_logic_wires.rs │ │ │ ├── flip_flop.rs │ │ │ ├── laser_cannon.rs │ │ │ ├── logic_bus.rs │ │ │ ├── logic_indicator.rs │ │ │ ├── logic_on.rs │ │ │ ├── missile_launcher.rs │ │ │ ├── mod.rs │ │ │ ├── not_gate.rs │ │ │ ├── numeric_display.rs │ │ │ ├── or_gate.rs │ │ │ ├── switch.rs │ │ │ └── xor_gate.rs │ ├── loot │ │ ├── generate.rs │ │ ├── loading.rs │ │ └── mod.rs │ ├── main.rs │ ├── netty │ │ ├── mod.rs │ │ ├── network_helpers.rs │ │ ├── server_events.rs │ │ ├── server_listener.rs │ │ └── sync │ │ │ ├── components │ │ │ ├── mod.rs │ │ │ └── parent.rs │ │ │ ├── flags.rs │ │ │ ├── mod.rs │ │ │ ├── registry.rs │ │ │ └── sync_bodies.rs │ ├── persistence │ │ ├── autosave.rs │ │ ├── backup.rs │ │ ├── loading.rs │ │ ├── make_persistent.rs │ │ ├── mod.rs │ │ ├── player_loading.rs │ │ └── saving.rs │ ├── physics │ │ ├── collider_disabling.rs │ │ └── mod.rs │ ├── plugin │ │ ├── mod.rs │ │ ├── server_plugin.rs │ │ └── vizualizer.rs │ ├── projectiles │ │ ├── explosion.rs │ │ ├── laser.rs │ │ ├── missile.rs │ │ └── mod.rs │ ├── quest │ │ ├── mod.rs │ │ └── quests │ │ │ ├── fight_pirate.rs │ │ │ ├── mod.rs │ │ │ └── tutorial │ │ │ ├── arm_ship.rs │ │ │ ├── attack_pirate.rs │ │ │ ├── build_ship.rs │ │ │ ├── collect_stash.rs │ │ │ ├── craft.rs │ │ │ ├── create_a_ship.rs │ │ │ ├── fly_a_ship.rs │ │ │ ├── fly_to_asteroid.rs │ │ │ ├── mine_asteroid.rs │ │ │ └── mod.rs │ ├── rng │ │ └── mod.rs │ ├── server │ │ ├── mod.rs │ │ └── stop.rs │ ├── settings │ │ └── mod.rs │ ├── shop │ │ ├── ev_reader.rs │ │ ├── generate_shop.rs │ │ ├── mod.rs │ │ └── prices.rs │ ├── structure │ │ ├── asteroid │ │ │ ├── dynamic.rs │ │ │ ├── generator.rs │ │ │ ├── generators │ │ │ │ ├── copper_rich_asteroid.rs │ │ │ │ ├── icy_asteroid.rs │ │ │ │ ├── iron_rich_asteroid.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── molten_asteroid.rs │ │ │ │ └── standard_generator.rs │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ └── sync.rs │ │ ├── block_health │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── persistence │ │ │ ├── chunk.rs │ │ │ └── mod.rs │ │ ├── planet │ │ │ ├── biosphere │ │ │ │ ├── biome │ │ │ │ │ ├── desert.rs │ │ │ │ │ ├── ice.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── molten.rs │ │ │ │ │ ├── ocean.rs │ │ │ │ │ └── plains.rs │ │ │ │ ├── biosphere_generation.rs │ │ │ │ ├── generation_tools.rs │ │ │ │ ├── grass_biosphere.rs │ │ │ │ ├── ice_biosphere.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── molten_biosphere.rs │ │ │ │ └── shader_assembler.rs │ │ │ ├── chunk.rs │ │ │ ├── generation │ │ │ │ ├── mod.rs │ │ │ │ └── planet_generator.rs │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ ├── planet_rotation.rs │ │ │ └── sync.rs │ │ ├── shared │ │ │ ├── build_mode.rs │ │ │ ├── melt_down.rs │ │ │ └── mod.rs │ │ ├── ship │ │ │ ├── change_pilot_event_listener.rs │ │ │ ├── events.rs │ │ │ ├── loading.rs │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ ├── speed.rs │ │ │ └── sync.rs │ │ ├── station │ │ │ ├── events.rs │ │ │ ├── loading.rs │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ └── sync.rs │ │ └── systems │ │ │ ├── camera_system.rs │ │ │ ├── dock_system.rs │ │ │ ├── energy_generation_system.rs │ │ │ ├── energy_storage_system.rs │ │ │ ├── laser_cannon_system.rs │ │ │ ├── line_system.rs │ │ │ ├── mining_laser_system.rs │ │ │ ├── missile_launcher_system.rs │ │ │ ├── mod.rs │ │ │ ├── persistence.rs │ │ │ ├── railgun_system │ │ │ └── mod.rs │ │ │ ├── shield_system │ │ │ ├── explosion.rs │ │ │ ├── laser.rs │ │ │ └── mod.rs │ │ │ ├── sync.rs │ │ │ ├── system_ordering.rs │ │ │ ├── thruster_system.rs │ │ │ └── warp │ │ │ ├── mod.rs │ │ │ └── warp_drive.rs │ ├── universe │ │ ├── galaxy_generation.rs │ │ ├── generators │ │ │ ├── factions_generator.rs │ │ │ ├── generation.rs │ │ │ ├── mod.rs │ │ │ ├── pirate_station.rs │ │ │ ├── planet_spawner.rs │ │ │ └── star.rs │ │ ├── map │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── spawners │ │ │ ├── asteroid │ │ │ │ ├── dynamic_spawner.rs │ │ │ │ ├── fixed_spawner.rs │ │ │ │ └── mod.rs │ │ │ ├── faction.rs │ │ │ ├── mod.rs │ │ │ ├── pirate.rs │ │ │ ├── pirate_station.rs │ │ │ └── quest_npc.rs │ │ └── warp │ │ │ └── mod.rs │ └── utility_runs │ │ ├── block_flipper.rs │ │ └── mod.rs ├── steam_appid.txt └── temp ├── docs ├── book.toml ├── mermaid-init.js └── src │ ├── SUMMARY.md │ ├── biomes │ └── index.md │ ├── connected_block_guide.png │ ├── index.md │ ├── packets │ ├── bulk-bodies.md │ ├── index.md │ └── player-movement.md │ ├── physics │ ├── anchor.md │ ├── index.md │ ├── location.md │ └── player_world.md │ ├── registries │ ├── identifiable.md │ ├── index.md │ └── many_to_one_registry.md │ └── rendering │ ├── index.md │ └── structure.md ├── guide.md ├── guides ├── building.md ├── commands.md ├── crafting.md ├── defenses.md ├── energy.md ├── gameplay.md ├── images │ └── reactor.png └── weapons.md ├── mockups ├── fabricator_mockup.html └── shop_mockup.html ├── monetization.md ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts ├── bat │ ├── run_client.bat │ └── run_server.bat └── sh │ ├── run_client.sh │ └── run_server.sh └── showcase ├── flying_over_planet.png ├── gunner_flying_towards_planet.png ├── gunship_below.png ├── gunship_front.png ├── gunship_overhead.png ├── gunship_top.png ├── inside_ship.png ├── many_ships.png ├── on_planet.png ├── planet_close.png ├── safely_landed_gunner.png ├── ship_in_space.png ├── ship_on_ground.png └── shooting_ship.png /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/steam_staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/.github/workflows/steam_staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/README.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/clippy.toml -------------------------------------------------------------------------------- /cosmos_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/.gitignore -------------------------------------------------------------------------------- /cosmos_client/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/Cargo.lock -------------------------------------------------------------------------------- /cosmos_client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/Cargo.toml -------------------------------------------------------------------------------- /cosmos_client/assets/adjectives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/adjectives.txt -------------------------------------------------------------------------------- /cosmos_client/assets/animals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/animals.txt -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/and_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/and_gate.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/button.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/camera.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/cloning_bay_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/cloning_bay_top.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/debug.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/door_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/door_open.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/energy_cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/energy_cell.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/fan.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/flip_flop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/flip_flop.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_aqua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_aqua.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_black.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_blue.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_brown.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_cyan.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_dark_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_dark_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_green.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_magenta.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_mint.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_orange.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_pink.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_purple.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_red.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_white.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/glass_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/glass_yellow.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/grass.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/gravity_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/gravity_well.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ice.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/laser_cannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/laser_cannon.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/lava.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_aqua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_aqua.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_black.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_blue.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_brown.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_cyan.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_dark_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_dark_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_green.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_magenta.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_mint.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_orange.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_pink.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_purple.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_red.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_white.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/light_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/light_yellow.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_bus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_bus.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_indicator.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_on.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_aqua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_aqua.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_blue.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_cyan.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_mint.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_pink.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/logic_wire_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/logic_wire_red.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/not_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/not_gate.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/numeric_display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/numeric_display.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/or_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/or_gate.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/plasma_drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/plasma_drill.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/power_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/power_cable.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_aqua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_aqua.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_black.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_blue.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_brown.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_cyan.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_dark_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_dark_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_green.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_light_grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_light_grey.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_magenta.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_mint.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_orange.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_pink.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_purple.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_red.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_white.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ramp_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ramp_yellow.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/reactor_cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/reactor_cell.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/reactor_window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/reactor_window.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/redwood_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/redwood_log.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ship_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ship_core.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/ship_dock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/ship_dock.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/short_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/short_grass.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/station_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/station_core.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/switch.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/tank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/tank.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/thruster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/thruster.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/warp_drive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/warp_drive.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/water.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/blocks/xor_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/blocks/xor_gate.json -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/cactus.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/dirt.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/door.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/fan.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/ice.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/lava.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/light.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/sand.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/shop.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/stone.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_0.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_1.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_2.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_3.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_4.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_5.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_6.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_7.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_8.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/tank_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/tank_9.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/blocks/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/blocks/water.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/items/magnite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/items/magnite.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/items/missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/items/missile.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/items/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/items/missing.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/items/sulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/items/sulfur.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/items/uranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/items/uranium.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/misc/symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/misc/symmetry.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/ui/close-coms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/ui/close-coms.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/ui/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/ui/crosshair.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/ui/crosshair.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/ui/crosshair.xcf -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/ui/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/ui/diamond.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/images/ui/open-coms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/images/ui/open-coms.png -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/lang/blocks/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/lang/blocks/en_us.lang -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/lang/items/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/lang/items/en_us.lang -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/lang/quests/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/lang/quests/en_us.lang -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/lang/settings/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/lang/settings/en_us.lang -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/lang/systems/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/lang/systems/en_us.lang -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/models/misc/missile.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/models/misc/missile.mtl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/models/misc/missile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/models/misc/missile.obj -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/models/misc/person.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/models/misc/person.glb -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/models/misc/person.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/models/misc/person.mtl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/models/misc/person.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/models/misc/person.obj -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/animated.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/animated.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/block.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/block.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/lod.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/lod.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/repeated.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/repeated.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/shield.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/shield.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/shaders/simplex3d.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/shaders/simplex3d.wgsl -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/music/antirock.json: -------------------------------------------------------------------------------- 1 | { 2 | "atmosphere": "Calm" 3 | } 4 | -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/music/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/music/credits.txt -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/music/mana-two-part-one.json: -------------------------------------------------------------------------------- 1 | { 2 | "atmosphere": "Calm" 3 | } 4 | -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/music/mana-two-part-three.json: -------------------------------------------------------------------------------- 1 | { 2 | "atmosphere": "Calm" 3 | } 4 | -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/music/mana-two-part-two.json: -------------------------------------------------------------------------------- 1 | { 2 | "atmosphere": "Calm" 3 | } 4 | -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/beep-beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/beep-beep.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/belt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/belt.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/break.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/break.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/credits.txt -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/lock-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/lock-on.wav -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/locked-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/locked-on.wav -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/place.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/place.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/railgun.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/railgun.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/temp/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/temp/temp -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/thud.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/thud.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/cosmos/sounds/sfx/warp-jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/cosmos/sounds/sfx/warp-jump.ogg -------------------------------------------------------------------------------- /cosmos_client/assets/fonts/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/fonts/License.txt -------------------------------------------------------------------------------- /cosmos_client/assets/fonts/PixeloidMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/fonts/PixeloidMono.ttf -------------------------------------------------------------------------------- /cosmos_client/assets/fonts/PixeloidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/fonts/PixeloidSans-Bold.ttf -------------------------------------------------------------------------------- /cosmos_client/assets/fonts/PixeloidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/fonts/PixeloidSans.ttf -------------------------------------------------------------------------------- /cosmos_client/assets/fonts/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/fonts/info.txt -------------------------------------------------------------------------------- /cosmos_client/assets/skybox/main-menu-panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/skybox/main-menu-panorama.png -------------------------------------------------------------------------------- /cosmos_client/assets/skybox/skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/assets/skybox/skybox.png -------------------------------------------------------------------------------- /cosmos_client/src/asset/asset_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/asset_loader.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/asset_loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/asset_loading.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/materials/block_materials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/materials/block_materials.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/materials/lod_materials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/materials/lod_materials.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/materials/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/materials/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/materials/shield.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/materials/shield.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/repeating_material.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/repeating_material.rs -------------------------------------------------------------------------------- /cosmos_client/src/asset/texture_atlas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/asset/texture_atlas.rs -------------------------------------------------------------------------------- /cosmos_client/src/audio/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/audio/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/audio/music/dynamic_music.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/audio/music/dynamic_music.rs -------------------------------------------------------------------------------- /cosmos_client/src/audio/music/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/audio/music/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/audio/volume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/audio/volume.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/blocks/dye_machine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/blocks/dye_machine.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/blocks/logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/blocks/logic.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/blocks/numeric_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/blocks/numeric_display.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/lighting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/lighting.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/multiblocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/multiblocks/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/multiblocks/reactor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/multiblocks/reactor/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/multiblocks/reactor/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/multiblocks/reactor/ui.rs -------------------------------------------------------------------------------- /cosmos_client/src/block/multiblocks/shipyard/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/block/multiblocks/shipyard/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/camera/camera_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/camera/camera_controller.rs -------------------------------------------------------------------------------- /cosmos_client/src/camera/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/camera/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/chat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/chat/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/coms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/coms/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/coms/systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/coms/systems.rs -------------------------------------------------------------------------------- /cosmos_client/src/coms/ui/coms_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/coms/ui/coms_request.rs -------------------------------------------------------------------------------- /cosmos_client/src/coms/ui/main_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/coms/ui/main_ui.rs -------------------------------------------------------------------------------- /cosmos_client/src/coms/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/coms/ui/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/crafting/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/crafting/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/crafting/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/crafting/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/crafting/recipes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/crafting/recipes/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/debug/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/debug/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/economy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/economy/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ecs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ecs/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/health.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/player/death.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/player/death.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/player/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/player/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/player/player_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/player/player_movement.rs -------------------------------------------------------------------------------- /cosmos_client/src/entities/player/render_distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/entities/player/render_distance.rs -------------------------------------------------------------------------------- /cosmos_client/src/events/block/block_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/events/block/block_events.rs -------------------------------------------------------------------------------- /cosmos_client/src/events/block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/events/block/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/events/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/events/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/input/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/input/inputs.rs -------------------------------------------------------------------------------- /cosmos_client/src/input/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/input/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/interactions/block_interactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/interactions/block_interactions.rs -------------------------------------------------------------------------------- /cosmos_client/src/interactions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/interactions/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/inventory/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/inventory/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/inventory/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/inventory/netty.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/descriptions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/descriptions.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/item_mesh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/item_mesh.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/physical_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/physical_item.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/usable/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/usable/blueprint.rs -------------------------------------------------------------------------------- /cosmos_client/src/item/usable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/item/usable/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/lang/load_langs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/lang/load_langs.rs -------------------------------------------------------------------------------- /cosmos_client/src/lang/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/lang/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/loading/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/loading/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/main.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/connect.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/gameplay/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/gameplay/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/gameplay/receiver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/gameplay/receiver.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/gameplay/sync/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/gameplay/sync/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/gameplay/sync/sync_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/gameplay/sync/sync_player.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/loading.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/lobby.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/lobby.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/steam.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/steam.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/sync/component/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/sync/component/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/netty/sync/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/netty/sync/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/notifications/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/notifications/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/physics/collider_disabling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/physics/collider_disabling.rs -------------------------------------------------------------------------------- /cosmos_client/src/physics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/physics/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/plugin/client_plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/plugin/client_plugin.rs -------------------------------------------------------------------------------- /cosmos_client/src/plugin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/plugin/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/projectiles/lasers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/projectiles/lasers.rs -------------------------------------------------------------------------------- /cosmos_client/src/projectiles/missile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/projectiles/missile.rs -------------------------------------------------------------------------------- /cosmos_client/src/projectiles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/projectiles/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/quest/lang.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/quest/lang.rs -------------------------------------------------------------------------------- /cosmos_client/src/quest/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/quest/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/quest/ui/hud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/quest/ui/hud.rs -------------------------------------------------------------------------------- /cosmos_client/src/quest/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/quest/ui/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/quest/waypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/quest/waypoint.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/custom_blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/custom_blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/custom_blocks/tank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/custom_blocks/tank.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/lod_renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/lod_renderer.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/mesh_delayer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/mesh_delayer.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/panorama/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/rendering/panorama/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/rendering/structure_renderer/mesh_builder.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmos_client/src/settings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/settings/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/shop/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/shop/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/shop/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/shop/netty.rs -------------------------------------------------------------------------------- /cosmos_client/src/shop/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/shop/ui.rs -------------------------------------------------------------------------------- /cosmos_client/src/skybox/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/skybox/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/asteroid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/asteroid/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/asteroid/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/asteroid/sync.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/audio/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/audio/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/chunk_retreiver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/chunk_retreiver.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/events.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/align_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/align_player.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/biosphere.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/biosphere.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/generation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/generation.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/lods/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/lods/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/planet/planet_skybox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/planet/planet_skybox.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/shared/build_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/shared/build_mode.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/shared/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/shared/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/shields/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/shields/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/create_ship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/create_ship.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/pilot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/pilot.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/ship_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/ship_movement.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/ui/details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/ui/details.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/ui/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/ui/ship_systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/ui/ship_systems.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/ship/ui/system_hotbar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/ship/ui/system_hotbar.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/station/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/station/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/camera_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/camera_system.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/dock_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/dock_system.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/shield_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/shield_system.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/sync.rs -------------------------------------------------------------------------------- /cosmos_client/src/structure/systems/warp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/structure/systems/warp/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/button.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/modal/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/modal/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/modal/text_modal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/modal/text_modal.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/show_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/show_cursor.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/slider.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/tabbed_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/tabbed_view.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/text_input.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/components/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/components/window.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/constants.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/crosshair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/crosshair.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/debug_info_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/debug_info_display.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/focus_cam/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/focus_cam/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/font.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hide.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hotbar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hotbar.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/alignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/alignment.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/error.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/interactable_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/interactable_block.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/looking_at_tooltips/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/looking_at_tooltips/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/hud/tooltip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/hud/tooltip.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/item_renderer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/item_renderer/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/item_renderer/photo_booth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/item_renderer/photo_booth.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/main_menu/menu_panorama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/main_menu/menu_panorama.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/main_menu/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/main_menu/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/main_menu/title_screen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/main_menu/title_screen/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/main_menu/triggers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/main_menu/triggers.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/master_menu/faction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/master_menu/faction.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/master_menu/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/master_menu/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/master_menu/quest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/master_menu/quest.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/message.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/pause/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/pause/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/reactivity/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/reactivity/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/reactivity/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/reactivity/node.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/reactivity/slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/reactivity/slider.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/reactivity/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/reactivity/text.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/reactivity/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/reactivity/text_input.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/settings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/settings/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/ship_flight/indicators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/ship_flight/indicators.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/ship_flight/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/ship_flight/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/ui/ship_flight/stats_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/ui/ship_flight/stats_display.rs -------------------------------------------------------------------------------- /cosmos_client/src/universe/map/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/universe/map/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/universe/map/waypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/universe/map/waypoint.rs -------------------------------------------------------------------------------- /cosmos_client/src/universe/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/universe/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/universe/star.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/universe/star.rs -------------------------------------------------------------------------------- /cosmos_client/src/window/fullscreen_toggle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/window/fullscreen_toggle.rs -------------------------------------------------------------------------------- /cosmos_client/src/window/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/window/mod.rs -------------------------------------------------------------------------------- /cosmos_client/src/window/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_client/src/window/setup.rs -------------------------------------------------------------------------------- /cosmos_client/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 4142000 2 | -------------------------------------------------------------------------------- /cosmos_core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/.gitignore -------------------------------------------------------------------------------- /cosmos_core/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/Cargo.lock -------------------------------------------------------------------------------- /cosmos_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/Cargo.toml -------------------------------------------------------------------------------- /cosmos_core/src/block/block_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_builder.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/block_direction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_direction.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/block_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_events.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/block_face.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_face.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/block_rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_rotation.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/block_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/block_update.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/blocks/fluid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/blocks/fluid.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/data/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/data/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/data/persistence.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/multiblock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/multiblock/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/multiblock/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/multiblock/prelude.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/multiblock/reactor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/multiblock/reactor.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/multiblock/rectangle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/multiblock/rectangle.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/multiblock/shipyard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/multiblock/shipyard.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/specific_blocks/dye_machine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/specific_blocks/dye_machine.rs -------------------------------------------------------------------------------- /cosmos_core/src/block/specific_blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/block/specific_blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/blockitems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/blockitems/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/chat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/chat/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/commands/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/coms/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/coms/events.rs -------------------------------------------------------------------------------- /cosmos_core/src/coms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/coms/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/coms/systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/coms/systems.rs -------------------------------------------------------------------------------- /cosmos_core/src/crafting/blocks/basic_fabricator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/crafting/blocks/basic_fabricator.rs -------------------------------------------------------------------------------- /cosmos_core/src/crafting/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/crafting/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/crafting/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/crafting/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/crafting/recipes/basic_fabricator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/crafting/recipes/basic_fabricator.rs -------------------------------------------------------------------------------- /cosmos_core/src/crafting/recipes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/crafting/recipes/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/creative/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/creative/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/debug/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/debug/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/economy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/economy/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/ecs/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/ecs/data.rs -------------------------------------------------------------------------------- /cosmos_core/src/ecs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/ecs/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/ecs/mut_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/ecs/mut_events.rs -------------------------------------------------------------------------------- /cosmos_core/src/ecs/sets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/ecs/sets.rs -------------------------------------------------------------------------------- /cosmos_core/src/ecs/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/ecs/types.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/health.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/player/creative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/player/creative.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/player/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/player/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/player/render_distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/player/render_distance.rs -------------------------------------------------------------------------------- /cosmos_core/src/entities/player/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/entities/player/respawn.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/block_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/block_events.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/structure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/structure/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/structure/ship/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/structure/ship/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/structure/structure_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/structure/structure_event.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/wrappers/cancellable_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/events/wrappers/cancellable_event.rs -------------------------------------------------------------------------------- /cosmos_core/src/events/wrappers/mod.rs: -------------------------------------------------------------------------------- 1 | //! todo 2 | 3 | // pub mod cancellable_event; 4 | -------------------------------------------------------------------------------- /cosmos_core/src/faction/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/faction/events.rs -------------------------------------------------------------------------------- /cosmos_core/src/faction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/faction/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/fluid/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/fluid/data.rs -------------------------------------------------------------------------------- /cosmos_core/src/fluid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/fluid/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/fluid/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/fluid/registry.rs -------------------------------------------------------------------------------- /cosmos_core/src/inventory/held_item_slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/inventory/held_item_slot.rs -------------------------------------------------------------------------------- /cosmos_core/src/inventory/itemstack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/inventory/itemstack.rs -------------------------------------------------------------------------------- /cosmos_core/src/inventory/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/inventory/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/inventory/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/inventory/netty.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/item_category.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/item_category.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/items/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/items/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/physical_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/physical_item.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/usable/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/usable/blueprint.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/usable/cooldown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/usable/cooldown.rs -------------------------------------------------------------------------------- /cosmos_core/src/item/usable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/item/usable/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/lib.rs -------------------------------------------------------------------------------- /cosmos_core/src/loader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/loader/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/logic/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/logic/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/client/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/client_preconnect_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/client_preconnect_messages.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/client_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/client_registry.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/client_reliable_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/client_reliable_messages.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/client_unreliable_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/client_unreliable_messages.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/cosmos_encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/cosmos_encoder.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/netty_rigidbody.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/netty_rigidbody.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/server/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/server_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/server_registry.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/server_reliable_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/server_reliable_messages.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/server_replication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/server_replication.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/server_unreliable_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/server_unreliable_messages.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/client_syncing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/client_syncing.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/events/client_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/events/client_event.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/events/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/events/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/events/netty_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/events/netty_event.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/events/server_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/events/server_event.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/mapping.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/registry/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/registry/client.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/registry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/registry/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/registry/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/registry/server.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/resources/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/resources/client.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/resources/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/resources/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/resources/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/resources/server.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/server_entity_syncing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/server_entity_syncing.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/sync/server_syncing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/sync/server_syncing.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/system_sets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/system_sets.rs -------------------------------------------------------------------------------- /cosmos_core/src/netty/world_tick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/netty/world_tick.rs -------------------------------------------------------------------------------- /cosmos_core/src/notifications/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/notifications/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/persistence/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/persistence/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/block_colliders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/block_colliders.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/collision_handling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/collision_handling.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/disable_rigid_body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/disable_rigid_body.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/gravity_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/gravity_system.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/location/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/location/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/location/systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/location/systems.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/player_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/player_world.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/stop_near_unloaded_chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/stop_near_unloaded_chunks.rs -------------------------------------------------------------------------------- /cosmos_core/src/physics/structure_physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/physics/structure_physics.rs -------------------------------------------------------------------------------- /cosmos_core/src/plugin/cosmos_core_plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/plugin/cosmos_core_plugin.rs -------------------------------------------------------------------------------- /cosmos_core/src/plugin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/plugin/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/prelude.rs -------------------------------------------------------------------------------- /cosmos_core/src/projectiles/causer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/projectiles/causer.rs -------------------------------------------------------------------------------- /cosmos_core/src/projectiles/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/projectiles/laser.rs -------------------------------------------------------------------------------- /cosmos_core/src/projectiles/missile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/projectiles/missile.rs -------------------------------------------------------------------------------- /cosmos_core/src/projectiles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/projectiles/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/projectiles/raycast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/projectiles/raycast.rs -------------------------------------------------------------------------------- /cosmos_core/src/quest/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/quest/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/registry/identifiable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/registry/identifiable.rs -------------------------------------------------------------------------------- /cosmos_core/src/registry/many_to_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/registry/many_to_one.rs -------------------------------------------------------------------------------- /cosmos_core/src/registry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/registry/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/registry/one_to_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/registry/one_to_one.rs -------------------------------------------------------------------------------- /cosmos_core/src/shop/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/shop/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/shop/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/shop/netty.rs -------------------------------------------------------------------------------- /cosmos_core/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/state/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/asteroid/asteroid_netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/asteroid/asteroid_netty.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/asteroid/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/asteroid/loading.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/asteroid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/asteroid/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/base_structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/base_structure.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/bevy_systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/bevy_systems.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/block_health/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/block_health/events.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/block_health/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/block_health/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/block_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/block_storage.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/blueprint/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/blueprint/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/chunk/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/chunk/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/chunk/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/chunk/netty.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/chunk/systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/chunk/systems.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/coordinates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/coordinates.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/dynamic_structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/dynamic_structure.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/events.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/full_structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/full_structure.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/loading/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/loading/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/lod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/lod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/lod_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/lod_chunk.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/persistence/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/persistence/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/planet/biosphere.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/planet/biosphere.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/planet/generation/biome.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/planet/generation/biome.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/planet/generation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/planet/generation/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/planet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/planet/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/planet/planet_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/planet/planet_builder.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/prelude.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/query.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/shared/build_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/shared/build_mode.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/shared/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/shared/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/shields/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/shields/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/ship/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/ship/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/ship/pilot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/ship/pilot.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/ship/ship_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/ship/ship_builder.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/ship/ship_movement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/ship/ship_movement.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/ship/warp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/ship/warp.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/station/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/station/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/station/station_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/station/station_builder.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/structure_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/structure_block.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/structure_iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/structure_iterator.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/camera_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/camera_system.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/dock_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/dock_system.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/line_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/line_system.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/shield_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/shield_system.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/sync.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/warp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/warp/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/structure/systems/warp/warp_drive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/structure/systems/warp/warp_drive.rs -------------------------------------------------------------------------------- /cosmos_core/src/time/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/time/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/universe/map/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/universe/map/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/universe/map/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/universe/map/system.rs -------------------------------------------------------------------------------- /cosmos_core/src/universe/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/universe/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/universe/star.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/universe/star.rs -------------------------------------------------------------------------------- /cosmos_core/src/universe/warp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/universe/warp/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/array_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/array_utils.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/ecs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/ecs.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/mod.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/ownership.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/ownership.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/quat_math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/quat_math.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/random.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/smooth_clamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/smooth_clamp.rs -------------------------------------------------------------------------------- /cosmos_core/src/utils/timer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_core/src/utils/timer.rs -------------------------------------------------------------------------------- /cosmos_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/.gitignore -------------------------------------------------------------------------------- /cosmos_server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/Cargo.toml -------------------------------------------------------------------------------- /cosmos_server/assets/cosmos/factions/names/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/assets/cosmos/factions/names/nouns.txt -------------------------------------------------------------------------------- /cosmos_server/assets/cosmos/kits/starter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/assets/cosmos/kits/starter.json -------------------------------------------------------------------------------- /cosmos_server/assets/cosmos/loot/tutorial_stash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/assets/cosmos/loot/tutorial_stash.json -------------------------------------------------------------------------------- /cosmos_server/config/cosmos/default_shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/config/cosmos/default_shop.json -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/pirate/default_0.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/pirate/default_0.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/pirate/default_1.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/pirate/default_1.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/pirate/default_2.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/pirate/default_2.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/pirate/default_3.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/pirate/default_3.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/pirate/default_4.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/pirate/default_4.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/shop/default.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/shop/default.bp -------------------------------------------------------------------------------- /cosmos_server/default_blueprints/shop/default.bp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/default_blueprints/shop/default.bp.bak -------------------------------------------------------------------------------- /cosmos_server/src/ai/combat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/combat.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/hit_tracking/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/hit_tracking/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/pirate/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/pirate/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/pirate/ship_ai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/pirate/ship_ai.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/pirate/station.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/pirate/station.rs -------------------------------------------------------------------------------- /cosmos_server/src/ai/quest_npc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/ai/quest_npc/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/block_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/block_events.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/data/instances/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/data/instances/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/data/instances/railgun.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/data/instances/railgun.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/data/instances/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/data/instances/storage.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/data/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/data/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/data/utils.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/drops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/drops/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/drops/specific.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/drops/specific.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/interactable/door.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/interactable/door.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/interactable/dye_machine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/interactable/dye_machine.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/interactable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/interactable/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/interactable/ship_core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/interactable/ship_core.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/interactable/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/interactable/storage.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/multiblock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/multiblock/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/multiblock/reactor/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/multiblock/reactor/impls.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/multiblock/reactor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/multiblock/reactor/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/multiblock/shipyard/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/multiblock/shipyard/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/updates/grass_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/updates/grass_update.rs -------------------------------------------------------------------------------- /cosmos_server/src/blocks/updates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/blocks/updates/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/chat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/chat/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/chat/text_chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/chat/text_chat.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/cosmos_command_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/cosmos_command_handler.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/blueprint.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/blueprints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/blueprints.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/despawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/despawn.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/gamemode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/gamemode.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/give.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/give.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/items.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/list.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/load.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/op.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/op.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/ping.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/save.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/save.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/say.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/say.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/impls/stop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/impls/stop.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/operator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/operator.rs -------------------------------------------------------------------------------- /cosmos_server/src/commands/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/commands/prelude.rs -------------------------------------------------------------------------------- /cosmos_server/src/coms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/coms/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/coms/systems.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/coms/systems.rs -------------------------------------------------------------------------------- /cosmos_server/src/converters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/converters/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/crafting/blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/crafting/blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/crafting/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/crafting/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/crafting/recipes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/crafting/recipes/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/creative/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/creative/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/economy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/economy/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/health.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/player/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/player/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/player/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/player/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/player/respawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/player/respawn.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/player/spawn_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/player/spawn_player.rs -------------------------------------------------------------------------------- /cosmos_server/src/entities/player/strength.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/entities/player/strength.rs -------------------------------------------------------------------------------- /cosmos_server/src/faction/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/faction/events.rs -------------------------------------------------------------------------------- /cosmos_server/src/faction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/faction/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/fluid/interact_fluid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/fluid/interact_fluid.rs -------------------------------------------------------------------------------- /cosmos_server/src/fluid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/fluid/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/fluid/register_blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/fluid/register_blocks.rs -------------------------------------------------------------------------------- /cosmos_server/src/fluid/tank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/fluid/tank.rs -------------------------------------------------------------------------------- /cosmos_server/src/init/init_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/init/init_server.rs -------------------------------------------------------------------------------- /cosmos_server/src/init/init_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/init/init_world.rs -------------------------------------------------------------------------------- /cosmos_server/src/init/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/init/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/inventory/block_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/inventory/block_events.rs -------------------------------------------------------------------------------- /cosmos_server/src/inventory/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/inventory/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/inventory/netty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/inventory/netty.rs -------------------------------------------------------------------------------- /cosmos_server/src/items/categories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/items/categories.rs -------------------------------------------------------------------------------- /cosmos_server/src/items/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/items/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/items/usable/blueprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/items/usable/blueprint.rs -------------------------------------------------------------------------------- /cosmos_server/src/items/usable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/items/usable/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/local/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/local/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/logic_driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/logic_driver.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/logic_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/logic_graph.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/and_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/and_gate.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/button.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/flip_flop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/flip_flop.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/logic_bus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/logic_bus.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/logic_on.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/logic_on.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/not_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/not_gate.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/or_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/or_gate.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/switch.rs -------------------------------------------------------------------------------- /cosmos_server/src/logic/specific_blocks/xor_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/logic/specific_blocks/xor_gate.rs -------------------------------------------------------------------------------- /cosmos_server/src/loot/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/loot/generate.rs -------------------------------------------------------------------------------- /cosmos_server/src/loot/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/loot/loading.rs -------------------------------------------------------------------------------- /cosmos_server/src/loot/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/loot/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/main.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/network_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/network_helpers.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/server_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/server_events.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/server_listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/server_listener.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/components/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/components/parent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/components/parent.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/flags.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/registry.rs -------------------------------------------------------------------------------- /cosmos_server/src/netty/sync/sync_bodies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/netty/sync/sync_bodies.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/autosave.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/autosave.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/backup.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/loading.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/make_persistent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/make_persistent.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/player_loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/player_loading.rs -------------------------------------------------------------------------------- /cosmos_server/src/persistence/saving.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/persistence/saving.rs -------------------------------------------------------------------------------- /cosmos_server/src/physics/collider_disabling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/physics/collider_disabling.rs -------------------------------------------------------------------------------- /cosmos_server/src/physics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/physics/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/plugin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/plugin/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/plugin/server_plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/plugin/server_plugin.rs -------------------------------------------------------------------------------- /cosmos_server/src/plugin/vizualizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/plugin/vizualizer.rs -------------------------------------------------------------------------------- /cosmos_server/src/projectiles/explosion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/projectiles/explosion.rs -------------------------------------------------------------------------------- /cosmos_server/src/projectiles/laser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/projectiles/laser.rs -------------------------------------------------------------------------------- /cosmos_server/src/projectiles/missile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/projectiles/missile.rs -------------------------------------------------------------------------------- /cosmos_server/src/projectiles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/projectiles/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/quests/fight_pirate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/quests/fight_pirate.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/quests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/quests/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/quests/tutorial/arm_ship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/quests/tutorial/arm_ship.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/quests/tutorial/craft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/quests/tutorial/craft.rs -------------------------------------------------------------------------------- /cosmos_server/src/quest/quests/tutorial/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/quest/quests/tutorial/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/rng/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/rng/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/server/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/server/stop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/server/stop.rs -------------------------------------------------------------------------------- /cosmos_server/src/settings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/settings/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/shop/ev_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/shop/ev_reader.rs -------------------------------------------------------------------------------- /cosmos_server/src/shop/generate_shop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/shop/generate_shop.rs -------------------------------------------------------------------------------- /cosmos_server/src/shop/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/shop/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/shop/prices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/shop/prices.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/asteroid/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/asteroid/dynamic.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/asteroid/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/asteroid/generator.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/asteroid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/asteroid/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/asteroid/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/asteroid/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/asteroid/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/asteroid/sync.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/block_health/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/block_health/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/persistence/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/persistence/chunk.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/persistence/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/persistence/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/biosphere/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/biosphere/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/chunk.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/generation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/generation/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/planet/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/planet/sync.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/shared/build_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/shared/build_mode.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/shared/melt_down.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/shared/melt_down.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/shared/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/shared/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/events.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/loading.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/speed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/speed.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/ship/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/ship/sync.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/station/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/station/events.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/station/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/station/loading.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/station/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/station/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/station/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/station/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/station/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/station/sync.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/camera_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/camera_system.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/dock_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/dock_system.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/line_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/line_system.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/persistence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/persistence.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/sync.rs -------------------------------------------------------------------------------- /cosmos_server/src/structure/systems/warp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/structure/systems/warp/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/galaxy_generation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/galaxy_generation.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/generators/generation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/generators/generation.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/generators/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/generators/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/generators/star.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/generators/star.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/map/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/map/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/spawners/asteroid/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/spawners/asteroid/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/spawners/faction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/spawners/faction.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/spawners/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/spawners/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/spawners/pirate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/spawners/pirate.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/spawners/quest_npc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/spawners/quest_npc.rs -------------------------------------------------------------------------------- /cosmos_server/src/universe/warp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/universe/warp/mod.rs -------------------------------------------------------------------------------- /cosmos_server/src/utility_runs/block_flipper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/utility_runs/block_flipper.rs -------------------------------------------------------------------------------- /cosmos_server/src/utility_runs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/src/utility_runs/mod.rs -------------------------------------------------------------------------------- /cosmos_server/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 4142000 2 | -------------------------------------------------------------------------------- /cosmos_server/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/cosmos_server/temp -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/mermaid-init.js -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/biomes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/biomes/index.md -------------------------------------------------------------------------------- /docs/src/connected_block_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/connected_block_guide.png -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/packets/bulk-bodies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/packets/bulk-bodies.md -------------------------------------------------------------------------------- /docs/src/packets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/packets/index.md -------------------------------------------------------------------------------- /docs/src/packets/player-movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/packets/player-movement.md -------------------------------------------------------------------------------- /docs/src/physics/anchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/physics/anchor.md -------------------------------------------------------------------------------- /docs/src/physics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/physics/index.md -------------------------------------------------------------------------------- /docs/src/physics/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/physics/location.md -------------------------------------------------------------------------------- /docs/src/physics/player_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/physics/player_world.md -------------------------------------------------------------------------------- /docs/src/registries/identifiable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/registries/identifiable.md -------------------------------------------------------------------------------- /docs/src/registries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/registries/index.md -------------------------------------------------------------------------------- /docs/src/registries/many_to_one_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/registries/many_to_one_registry.md -------------------------------------------------------------------------------- /docs/src/rendering/index.md: -------------------------------------------------------------------------------- 1 | # Rendering 🚧 2 | -------------------------------------------------------------------------------- /docs/src/rendering/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/docs/src/rendering/structure.md -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guide.md -------------------------------------------------------------------------------- /guides/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/building.md -------------------------------------------------------------------------------- /guides/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/commands.md -------------------------------------------------------------------------------- /guides/crafting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/crafting.md -------------------------------------------------------------------------------- /guides/defenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/defenses.md -------------------------------------------------------------------------------- /guides/energy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/energy.md -------------------------------------------------------------------------------- /guides/gameplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/gameplay.md -------------------------------------------------------------------------------- /guides/images/reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/images/reactor.png -------------------------------------------------------------------------------- /guides/weapons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/guides/weapons.md -------------------------------------------------------------------------------- /mockups/fabricator_mockup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/mockups/fabricator_mockup.html -------------------------------------------------------------------------------- /mockups/shop_mockup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/mockups/shop_mockup.html -------------------------------------------------------------------------------- /monetization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/monetization.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | # trailing_comma = "Never" 2 | max_width = 140 -------------------------------------------------------------------------------- /scripts/bat/run_client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/scripts/bat/run_client.bat -------------------------------------------------------------------------------- /scripts/bat/run_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/scripts/bat/run_server.bat -------------------------------------------------------------------------------- /scripts/sh/run_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/scripts/sh/run_client.sh -------------------------------------------------------------------------------- /scripts/sh/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/scripts/sh/run_server.sh -------------------------------------------------------------------------------- /showcase/flying_over_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/flying_over_planet.png -------------------------------------------------------------------------------- /showcase/gunner_flying_towards_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/gunner_flying_towards_planet.png -------------------------------------------------------------------------------- /showcase/gunship_below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/gunship_below.png -------------------------------------------------------------------------------- /showcase/gunship_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/gunship_front.png -------------------------------------------------------------------------------- /showcase/gunship_overhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/gunship_overhead.png -------------------------------------------------------------------------------- /showcase/gunship_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/gunship_top.png -------------------------------------------------------------------------------- /showcase/inside_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/inside_ship.png -------------------------------------------------------------------------------- /showcase/many_ships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/many_ships.png -------------------------------------------------------------------------------- /showcase/on_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/on_planet.png -------------------------------------------------------------------------------- /showcase/planet_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/planet_close.png -------------------------------------------------------------------------------- /showcase/safely_landed_gunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/safely_landed_gunner.png -------------------------------------------------------------------------------- /showcase/ship_in_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/ship_in_space.png -------------------------------------------------------------------------------- /showcase/ship_on_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/ship_on_ground.png -------------------------------------------------------------------------------- /showcase/shooting_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyTornetta/Cosmos/HEAD/showcase/shooting_ship.png --------------------------------------------------------------------------------