├── .clang-format ├── .gitattributes ├── .gitignore ├── JustCauseMP.sln ├── README.md ├── asset_converter ├── asset_converter.vcxproj ├── asset_converter.vcxproj.filters ├── asset_converter.vcxproj.user └── code │ └── main.cpp ├── backup.clang-format ├── client ├── client - Backup.vcxproj.user ├── client.vcxproj ├── client.vcxproj.filters ├── client.vcxproj.user ├── code │ ├── core │ │ ├── clean_dbg.cpp │ │ ├── clean_dbg.h │ │ ├── dbg_ui.cpp │ │ ├── dbg_ui.h │ │ ├── hooks.cpp │ │ ├── hooks.h │ │ ├── keycode.cpp │ │ ├── keycode.h │ │ ├── patching.h │ │ ├── task_system │ │ │ ├── task.cpp │ │ │ ├── task.h │ │ │ ├── task_system.cpp │ │ │ └── task_system.h │ │ ├── test_units.cpp │ │ ├── test_units.h │ │ ├── ui.cpp │ │ └── ui.h │ ├── defs │ │ └── client_basic.h │ ├── game │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── object │ │ │ ├── action_point_owner │ │ │ │ ├── action_point_owner.cpp │ │ │ │ └── action_point_owner.h │ │ │ ├── agent_type │ │ │ │ ├── npc_variant.cpp │ │ │ │ ├── npc_variant.h │ │ │ │ ├── vehicle_type.cpp │ │ │ │ └── vehicle_type.h │ │ │ ├── alive_object │ │ │ │ ├── alive_object.cpp │ │ │ │ └── alive_object.h │ │ │ ├── area_damage │ │ │ │ ├── area_damage.cpp │ │ │ │ └── area_damage.h │ │ │ ├── asset │ │ │ │ ├── asset_anim.cpp │ │ │ │ ├── asset_anim.h │ │ │ │ ├── asset_rbm.cpp │ │ │ │ ├── asset_rbm.h │ │ │ │ ├── asset_texture.cpp │ │ │ │ └── asset_texture.h │ │ │ ├── base │ │ │ │ ├── base.cpp │ │ │ │ ├── base.h │ │ │ │ ├── comps │ │ │ │ │ ├── model.cpp │ │ │ │ │ └── model.h │ │ │ │ ├── obj_event_manager.cpp │ │ │ │ └── obj_event_manager.h │ │ │ ├── camera │ │ │ │ ├── cam_settings.cpp │ │ │ │ ├── cam_settings.h │ │ │ │ ├── camera.cpp │ │ │ │ └── camera.h │ │ │ ├── character │ │ │ │ ├── character.cpp │ │ │ │ ├── character.h │ │ │ │ └── comps │ │ │ │ │ ├── skeleton.cpp │ │ │ │ │ ├── skeleton.h │ │ │ │ │ ├── stance_controller.cpp │ │ │ │ │ └── stance_controller.h │ │ │ ├── character_handle │ │ │ │ ├── character_handle.cpp │ │ │ │ └── character_handle.h │ │ │ ├── damageable_object │ │ │ │ ├── damageable_object.cpp │ │ │ │ ├── damageable_object.h │ │ │ │ ├── grenade.cpp │ │ │ │ └── grenade.h │ │ │ ├── exported_entity │ │ │ │ ├── exported_entity.cpp │ │ │ │ └── exported_entity.h │ │ │ ├── force_pulse │ │ │ │ ├── force_pulse.cpp │ │ │ │ └── force_pulse.h │ │ │ ├── game_player │ │ │ │ ├── game_player.cpp │ │ │ │ └── game_player.h │ │ │ ├── game_resource │ │ │ │ ├── ee_resource.cpp │ │ │ │ ├── ee_resource.h │ │ │ │ ├── game_resource.cpp │ │ │ │ └── game_resource.h │ │ │ ├── interactable │ │ │ │ ├── interactable.cpp │ │ │ │ └── interactable.h │ │ │ ├── item │ │ │ │ ├── item_pickup.cpp │ │ │ │ └── item_pickup.h │ │ │ ├── ladder │ │ │ │ ├── ladder.cpp │ │ │ │ └── ladder.h │ │ │ ├── mission │ │ │ │ ├── objective.cpp │ │ │ │ └── objective.h │ │ │ ├── mounted_gun │ │ │ │ ├── mounted_gun.cpp │ │ │ │ └── mounted_gun.h │ │ │ ├── parachute │ │ │ │ ├── parachute.cpp │ │ │ │ └── parachute.h │ │ │ ├── physics │ │ │ │ ├── pfx_character.cpp │ │ │ │ ├── pfx_character.h │ │ │ │ ├── pfx_collision.cpp │ │ │ │ ├── pfx_collision.h │ │ │ │ ├── pfx_instance.cpp │ │ │ │ └── pfx_instance.h │ │ │ ├── rigid_object │ │ │ │ ├── animated_rigid_object.cpp │ │ │ │ ├── animated_rigid_object.h │ │ │ │ ├── simple_rigid_object.cpp │ │ │ │ ├── simple_rigid_object.h │ │ │ │ ├── traffic_light.cpp │ │ │ │ └── traffic_light.h │ │ │ ├── savegame │ │ │ │ ├── savegame.cpp │ │ │ │ └── savegame.h │ │ │ ├── sound │ │ │ │ ├── sound_bank.cpp │ │ │ │ ├── sound_bank.h │ │ │ │ ├── sound_game_obj.cpp │ │ │ │ └── sound_game_obj.h │ │ │ ├── spawn_point │ │ │ │ ├── agent_spawn_point.cpp │ │ │ │ ├── agent_spawn_point.h │ │ │ │ ├── object_spawn_point.cpp │ │ │ │ ├── object_spawn_point.h │ │ │ │ ├── spawn_point.cpp │ │ │ │ ├── spawn_point.h │ │ │ │ ├── vehicle_spawn_point.cpp │ │ │ │ └── vehicle_spawn_point.h │ │ │ ├── ui │ │ │ │ ├── map_icon.cpp │ │ │ │ ├── map_icon.h │ │ │ │ ├── map_icon_type.cpp │ │ │ │ ├── map_icon_type.h │ │ │ │ ├── target_indicator.cpp │ │ │ │ └── target_indicator.h │ │ │ ├── vars │ │ │ │ ├── anims.h │ │ │ │ ├── exported_entities.h │ │ │ │ ├── fxs.h │ │ │ │ ├── locations.h │ │ │ │ ├── models.h │ │ │ │ ├── npc_variants.h │ │ │ │ ├── pfxs.h │ │ │ │ ├── ui.h │ │ │ │ └── weapons.h │ │ │ ├── vehicle │ │ │ │ ├── air_vehicle.cpp │ │ │ │ ├── air_vehicle.h │ │ │ │ ├── airplane.cpp │ │ │ │ ├── airplane.h │ │ │ │ ├── boat.cpp │ │ │ │ ├── boat.h │ │ │ │ ├── car.cpp │ │ │ │ ├── car.h │ │ │ │ ├── comps │ │ │ │ │ ├── vehicle_seat.cpp │ │ │ │ │ └── vehicle_seat.h │ │ │ │ ├── helicopter.cpp │ │ │ │ ├── helicopter.h │ │ │ │ ├── land_vehicle.cpp │ │ │ │ ├── land_vehicle.h │ │ │ │ ├── motorbike.cpp │ │ │ │ ├── motorbike.h │ │ │ │ ├── sea_vehicle.cpp │ │ │ │ ├── sea_vehicle.h │ │ │ │ ├── submarine.cpp │ │ │ │ ├── submarine.h │ │ │ │ ├── tank.cpp │ │ │ │ ├── tank.h │ │ │ │ ├── vehicle.cpp │ │ │ │ └── vehicle.h │ │ │ └── weapon │ │ │ │ ├── bullet.cpp │ │ │ │ ├── bullet.h │ │ │ │ ├── weapon.cpp │ │ │ │ ├── weapon.h │ │ │ │ ├── weapon_belt.cpp │ │ │ │ └── weapon_belt.h │ │ └── sys │ │ │ ├── ai │ │ │ ├── ai_core.cpp │ │ │ └── ai_core.h │ │ │ ├── all.h │ │ │ ├── camera │ │ │ ├── cam_control_manager.cpp │ │ │ ├── cam_control_manager.h │ │ │ ├── camera_manager.cpp │ │ │ └── camera_manager.h │ │ │ ├── core │ │ │ ├── explosion_manager.cpp │ │ │ ├── explosion_manager.h │ │ │ ├── factory_system.cpp │ │ │ └── factory_system.h │ │ │ ├── game │ │ │ ├── game_control.cpp │ │ │ ├── game_control.h │ │ │ ├── game_ctx.cpp │ │ │ ├── game_ctx.h │ │ │ ├── game_status.cpp │ │ │ └── game_status.h │ │ │ ├── particle │ │ │ ├── particle_system.cpp │ │ │ └── particle_system.h │ │ │ ├── renderer │ │ │ ├── renderer.cpp │ │ │ └── renderer.h │ │ │ ├── resource │ │ │ ├── anim_system.cpp │ │ │ ├── anim_system.h │ │ │ ├── archives.cpp │ │ │ ├── archives.h │ │ │ ├── model_system.cpp │ │ │ ├── model_system.h │ │ │ ├── physics.cpp │ │ │ ├── physics.h │ │ │ ├── resource_cache.h │ │ │ ├── resource_streamer.cpp │ │ │ ├── resource_streamer.h │ │ │ ├── texture_system.cpp │ │ │ └── texture_system.h │ │ │ ├── settings │ │ │ ├── settings_system.cpp │ │ │ └── settings_system.h │ │ │ ├── sound │ │ │ ├── sound_system.cpp │ │ │ └── sound_system.h │ │ │ ├── time │ │ │ ├── time_system.cpp │ │ │ └── time_system.h │ │ │ ├── vehicle │ │ │ ├── vehicle_manager.cpp │ │ │ └── vehicle_manager.h │ │ │ ├── weapon │ │ │ ├── ammo_manager.cpp │ │ │ ├── ammo_manager.h │ │ │ ├── weapon_system.cpp │ │ │ └── weapon_system.h │ │ │ └── world │ │ │ ├── day_cycle.cpp │ │ │ ├── day_cycle.h │ │ │ ├── player_global_info.cpp │ │ │ ├── player_global_info.h │ │ │ ├── world.cpp │ │ │ └── world.h │ ├── havok │ │ ├── character_proxy.cpp │ │ ├── character_proxy.h │ │ ├── defs.h │ │ ├── motion_state.cpp │ │ ├── motion_state.h │ │ ├── simple_shape_phantom.cpp │ │ └── simple_shape_phantom.h │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── main.cpp │ ├── main.h │ ├── mp │ │ ├── chat │ │ │ ├── chat.cpp │ │ │ └── chat.h │ │ ├── cmd │ │ │ ├── cmd.cpp │ │ │ └── cmd.h │ │ ├── logic.cpp │ │ ├── logic.h │ │ ├── net.cpp │ │ └── net.h │ ├── patches │ │ ├── patches.cpp │ │ └── patches.h │ └── stl │ │ ├── map.h │ │ ├── string.h │ │ └── vec.h └── rsrc │ ├── bug_ripper_ui.rc │ ├── font.ttf │ ├── icon.ico │ ├── resource.h │ └── resource.rc ├── dinput8 ├── code │ ├── ModuleList │ │ └── ModuleList.hpp │ ├── dllmain.cpp │ ├── dllmain.h │ └── x86.def ├── dinput8.vcxproj ├── dinput8.vcxproj.filters └── dinput8.vcxproj.user ├── external ├── include │ ├── MinHook.h │ ├── asio.hpp │ ├── asio │ │ ├── any_io_executor.hpp │ │ ├── append.hpp │ │ ├── as_tuple.hpp │ │ ├── associated_allocator.hpp │ │ ├── associated_cancellation_slot.hpp │ │ ├── associated_executor.hpp │ │ ├── associator.hpp │ │ ├── async_result.hpp │ │ ├── awaitable.hpp │ │ ├── basic_datagram_socket.hpp │ │ ├── basic_deadline_timer.hpp │ │ ├── basic_file.hpp │ │ ├── basic_io_object.hpp │ │ ├── basic_random_access_file.hpp │ │ ├── basic_raw_socket.hpp │ │ ├── basic_readable_pipe.hpp │ │ ├── basic_seq_packet_socket.hpp │ │ ├── basic_serial_port.hpp │ │ ├── basic_signal_set.hpp │ │ ├── basic_socket.hpp │ │ ├── basic_socket_acceptor.hpp │ │ ├── basic_socket_iostream.hpp │ │ ├── basic_socket_streambuf.hpp │ │ ├── basic_stream_file.hpp │ │ ├── basic_stream_socket.hpp │ │ ├── basic_streambuf.hpp │ │ ├── basic_streambuf_fwd.hpp │ │ ├── basic_waitable_timer.hpp │ │ ├── basic_writable_pipe.hpp │ │ ├── bind_allocator.hpp │ │ ├── bind_cancellation_slot.hpp │ │ ├── bind_executor.hpp │ │ ├── buffer.hpp │ │ ├── buffer_registration.hpp │ │ ├── buffered_read_stream.hpp │ │ ├── buffered_read_stream_fwd.hpp │ │ ├── buffered_stream.hpp │ │ ├── buffered_stream_fwd.hpp │ │ ├── buffered_write_stream.hpp │ │ ├── buffered_write_stream_fwd.hpp │ │ ├── buffers_iterator.hpp │ │ ├── cancellation_signal.hpp │ │ ├── cancellation_state.hpp │ │ ├── cancellation_type.hpp │ │ ├── co_spawn.hpp │ │ ├── completion_condition.hpp │ │ ├── compose.hpp │ │ ├── connect.hpp │ │ ├── connect_pipe.hpp │ │ ├── coroutine.hpp │ │ ├── deadline_timer.hpp │ │ ├── defer.hpp │ │ ├── deferred.hpp │ │ ├── detached.hpp │ │ ├── detail │ │ │ ├── array.hpp │ │ │ ├── array_fwd.hpp │ │ │ ├── assert.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── base_from_cancellation_state.hpp │ │ │ ├── base_from_completion_cond.hpp │ │ │ ├── bind_handler.hpp │ │ │ ├── blocking_executor_op.hpp │ │ │ ├── buffer_resize_guard.hpp │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ ├── buffered_stream_storage.hpp │ │ │ ├── bulk_executor_op.hpp │ │ │ ├── call_stack.hpp │ │ │ ├── chrono.hpp │ │ │ ├── chrono_time_traits.hpp │ │ │ ├── completion_handler.hpp │ │ │ ├── concurrency_hint.hpp │ │ │ ├── conditionally_enabled_event.hpp │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ ├── config.hpp │ │ │ ├── consuming_buffers.hpp │ │ │ ├── cstddef.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── date_time_fwd.hpp │ │ │ ├── deadline_timer_service.hpp │ │ │ ├── dependent_type.hpp │ │ │ ├── descriptor_ops.hpp │ │ │ ├── descriptor_read_op.hpp │ │ │ ├── descriptor_write_op.hpp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── event.hpp │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ ├── exception.hpp │ │ │ ├── executor_function.hpp │ │ │ ├── executor_op.hpp │ │ │ ├── fd_set_adapter.hpp │ │ │ ├── fenced_block.hpp │ │ │ ├── functional.hpp │ │ │ ├── future.hpp │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ ├── global.hpp │ │ │ ├── handler_alloc_helpers.hpp │ │ │ ├── handler_cont_helpers.hpp │ │ │ ├── handler_invoke_helpers.hpp │ │ │ ├── handler_tracking.hpp │ │ │ ├── handler_type_requirements.hpp │ │ │ ├── handler_work.hpp │ │ │ ├── hash_map.hpp │ │ │ ├── impl │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ ├── handler_tracking.ipp │ │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ │ ├── io_uring_file_service.ipp │ │ │ │ ├── io_uring_service.hpp │ │ │ │ ├── io_uring_service.ipp │ │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ ├── null_event.ipp │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ ├── posix_event.ipp │ │ │ │ ├── posix_mutex.ipp │ │ │ │ ├── posix_serial_port_service.ipp │ │ │ │ ├── posix_thread.ipp │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ ├── scheduler.ipp │ │ │ │ ├── select_reactor.hpp │ │ │ │ ├── select_reactor.ipp │ │ │ │ ├── service_registry.hpp │ │ │ │ ├── service_registry.ipp │ │ │ │ ├── signal_set_service.ipp │ │ │ │ ├── socket_ops.ipp │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ ├── strand_service.hpp │ │ │ │ ├── strand_service.ipp │ │ │ │ ├── thread_context.ipp │ │ │ │ ├── throw_error.ipp │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ ├── win_event.ipp │ │ │ │ ├── win_iocp_file_service.ipp │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ ├── win_mutex.ipp │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ ├── win_thread.ipp │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ └── winsock_init.ipp │ │ │ ├── io_control.hpp │ │ │ ├── io_object_impl.hpp │ │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ │ ├── io_uring_descriptor_read_op.hpp │ │ │ ├── io_uring_descriptor_service.hpp │ │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ │ ├── io_uring_descriptor_write_op.hpp │ │ │ ├── io_uring_file_service.hpp │ │ │ ├── io_uring_null_buffers_op.hpp │ │ │ ├── io_uring_operation.hpp │ │ │ ├── io_uring_service.hpp │ │ │ ├── io_uring_socket_accept_op.hpp │ │ │ ├── io_uring_socket_connect_op.hpp │ │ │ ├── io_uring_socket_recv_op.hpp │ │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ │ ├── io_uring_socket_send_op.hpp │ │ │ ├── io_uring_socket_sendto_op.hpp │ │ │ ├── io_uring_socket_service.hpp │ │ │ ├── io_uring_socket_service_base.hpp │ │ │ ├── io_uring_wait_op.hpp │ │ │ ├── is_buffer_sequence.hpp │ │ │ ├── is_executor.hpp │ │ │ ├── keyword_tss_ptr.hpp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── limits.hpp │ │ │ ├── local_free_on_block_exit.hpp │ │ │ ├── macos_fenced_block.hpp │ │ │ ├── memory.hpp │ │ │ ├── mutex.hpp │ │ │ ├── non_const_lvalue.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── null_event.hpp │ │ │ ├── null_fenced_block.hpp │ │ │ ├── null_global.hpp │ │ │ ├── null_mutex.hpp │ │ │ ├── null_reactor.hpp │ │ │ ├── null_signal_blocker.hpp │ │ │ ├── null_socket_service.hpp │ │ │ ├── null_static_mutex.hpp │ │ │ ├── null_thread.hpp │ │ │ ├── null_tss_ptr.hpp │ │ │ ├── object_pool.hpp │ │ │ ├── old_win_sdk_compat.hpp │ │ │ ├── op_queue.hpp │ │ │ ├── operation.hpp │ │ │ ├── pipe_select_interrupter.hpp │ │ │ ├── pop_options.hpp │ │ │ ├── posix_event.hpp │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ ├── posix_global.hpp │ │ │ ├── posix_mutex.hpp │ │ │ ├── posix_serial_port_service.hpp │ │ │ ├── posix_signal_blocker.hpp │ │ │ ├── posix_static_mutex.hpp │ │ │ ├── posix_thread.hpp │ │ │ ├── posix_tss_ptr.hpp │ │ │ ├── push_options.hpp │ │ │ ├── reactive_descriptor_service.hpp │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ ├── reactive_socket_send_op.hpp │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ ├── reactive_socket_service.hpp │ │ │ ├── reactive_socket_service_base.hpp │ │ │ ├── reactive_wait_op.hpp │ │ │ ├── reactor.hpp │ │ │ ├── reactor_op.hpp │ │ │ ├── reactor_op_queue.hpp │ │ │ ├── recycling_allocator.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── resolve_endpoint_op.hpp │ │ │ ├── resolve_op.hpp │ │ │ ├── resolve_query_op.hpp │ │ │ ├── resolver_service.hpp │ │ │ ├── resolver_service_base.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── scheduler_operation.hpp │ │ │ ├── scheduler_task.hpp │ │ │ ├── scheduler_thread_info.hpp │ │ │ ├── scoped_lock.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── select_interrupter.hpp │ │ │ ├── select_reactor.hpp │ │ │ ├── service_registry.hpp │ │ │ ├── signal_blocker.hpp │ │ │ ├── signal_handler.hpp │ │ │ ├── signal_init.hpp │ │ │ ├── signal_op.hpp │ │ │ ├── signal_set_service.hpp │ │ │ ├── socket_holder.hpp │ │ │ ├── socket_ops.hpp │ │ │ ├── socket_option.hpp │ │ │ ├── socket_select_interrupter.hpp │ │ │ ├── socket_types.hpp │ │ │ ├── solaris_fenced_block.hpp │ │ │ ├── source_location.hpp │ │ │ ├── static_mutex.hpp │ │ │ ├── std_event.hpp │ │ │ ├── std_fenced_block.hpp │ │ │ ├── std_global.hpp │ │ │ ├── std_mutex.hpp │ │ │ ├── std_static_mutex.hpp │ │ │ ├── std_thread.hpp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_service.hpp │ │ │ ├── string_view.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_context.hpp │ │ │ ├── thread_group.hpp │ │ │ ├── thread_info_base.hpp │ │ │ ├── throw_error.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── timer_queue.hpp │ │ │ ├── timer_queue_base.hpp │ │ │ ├── timer_queue_ptime.hpp │ │ │ ├── timer_queue_set.hpp │ │ │ ├── timer_scheduler.hpp │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ ├── tss_ptr.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── variadic_templates.hpp │ │ │ ├── wait_handler.hpp │ │ │ ├── wait_op.hpp │ │ │ ├── win_event.hpp │ │ │ ├── win_fd_set_adapter.hpp │ │ │ ├── win_fenced_block.hpp │ │ │ ├── win_global.hpp │ │ │ ├── win_iocp_file_service.hpp │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ ├── win_iocp_handle_service.hpp │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ ├── win_iocp_io_context.hpp │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ ├── win_iocp_operation.hpp │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ ├── win_iocp_socket_service.hpp │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ ├── win_iocp_thread_info.hpp │ │ │ ├── win_iocp_wait_op.hpp │ │ │ ├── win_mutex.hpp │ │ │ ├── win_object_handle_service.hpp │ │ │ ├── win_static_mutex.hpp │ │ │ ├── win_thread.hpp │ │ │ ├── win_tss_ptr.hpp │ │ │ ├── winapp_thread.hpp │ │ │ ├── wince_thread.hpp │ │ │ ├── winrt_async_manager.hpp │ │ │ ├── winrt_async_op.hpp │ │ │ ├── winrt_resolve_op.hpp │ │ │ ├── winrt_resolver_service.hpp │ │ │ ├── winrt_socket_connect_op.hpp │ │ │ ├── winrt_socket_recv_op.hpp │ │ │ ├── winrt_socket_send_op.hpp │ │ │ ├── winrt_ssocket_service.hpp │ │ │ ├── winrt_ssocket_service_base.hpp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_utils.hpp │ │ │ ├── winsock_init.hpp │ │ │ ├── work_dispatcher.hpp │ │ │ └── wrapped_handler.hpp │ │ ├── dispatch.hpp │ │ ├── error.hpp │ │ ├── error_code.hpp │ │ ├── execution.hpp │ │ ├── execution │ │ │ ├── allocator.hpp │ │ │ ├── any_executor.hpp │ │ │ ├── bad_executor.hpp │ │ │ ├── blocking.hpp │ │ │ ├── blocking_adaptation.hpp │ │ │ ├── bulk_execute.hpp │ │ │ ├── bulk_guarantee.hpp │ │ │ ├── connect.hpp │ │ │ ├── context.hpp │ │ │ ├── context_as.hpp │ │ │ ├── detail │ │ │ │ ├── as_invocable.hpp │ │ │ │ ├── as_operation.hpp │ │ │ │ ├── as_receiver.hpp │ │ │ │ ├── bulk_sender.hpp │ │ │ │ ├── submit_receiver.hpp │ │ │ │ └── void_receiver.hpp │ │ │ ├── execute.hpp │ │ │ ├── executor.hpp │ │ │ ├── impl │ │ │ │ ├── bad_executor.ipp │ │ │ │ └── receiver_invocation_error.ipp │ │ │ ├── invocable_archetype.hpp │ │ │ ├── mapping.hpp │ │ │ ├── occupancy.hpp │ │ │ ├── operation_state.hpp │ │ │ ├── outstanding_work.hpp │ │ │ ├── prefer_only.hpp │ │ │ ├── receiver.hpp │ │ │ ├── receiver_invocation_error.hpp │ │ │ ├── relationship.hpp │ │ │ ├── schedule.hpp │ │ │ ├── scheduler.hpp │ │ │ ├── sender.hpp │ │ │ ├── set_done.hpp │ │ │ ├── set_error.hpp │ │ │ ├── set_value.hpp │ │ │ ├── start.hpp │ │ │ └── submit.hpp │ │ ├── execution_context.hpp │ │ ├── executor.hpp │ │ ├── executor_work_guard.hpp │ │ ├── experimental │ │ │ ├── append.hpp │ │ │ ├── as_single.hpp │ │ │ ├── as_tuple.hpp │ │ │ ├── awaitable_operators.hpp │ │ │ ├── basic_channel.hpp │ │ │ ├── basic_concurrent_channel.hpp │ │ │ ├── cancellation_condition.hpp │ │ │ ├── channel.hpp │ │ │ ├── channel_error.hpp │ │ │ ├── channel_traits.hpp │ │ │ ├── co_spawn.hpp │ │ │ ├── concurrent_channel.hpp │ │ │ ├── coro.hpp │ │ │ ├── coro_traits.hpp │ │ │ ├── deferred.hpp │ │ │ ├── detail │ │ │ │ ├── channel_handler.hpp │ │ │ │ ├── channel_message.hpp │ │ │ │ ├── channel_operation.hpp │ │ │ │ ├── channel_payload.hpp │ │ │ │ ├── channel_receive_op.hpp │ │ │ │ ├── channel_send_functions.hpp │ │ │ │ ├── channel_send_op.hpp │ │ │ │ ├── channel_service.hpp │ │ │ │ ├── completion_handler_erasure.hpp │ │ │ │ ├── coro_promise_allocator.hpp │ │ │ │ ├── has_signature.hpp │ │ │ │ ├── impl │ │ │ │ │ └── channel_service.hpp │ │ │ │ └── partial_promise.hpp │ │ │ ├── impl │ │ │ │ ├── as_single.hpp │ │ │ │ ├── channel_error.ipp │ │ │ │ ├── coro.hpp │ │ │ │ ├── parallel_group.hpp │ │ │ │ ├── promise.hpp │ │ │ │ └── use_coro.hpp │ │ │ ├── parallel_group.hpp │ │ │ ├── prepend.hpp │ │ │ ├── promise.hpp │ │ │ └── use_coro.hpp │ │ ├── file_base.hpp │ │ ├── generic │ │ │ ├── basic_endpoint.hpp │ │ │ ├── datagram_protocol.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ └── impl │ │ │ │ │ └── endpoint.ipp │ │ │ ├── raw_protocol.hpp │ │ │ ├── seq_packet_protocol.hpp │ │ │ └── stream_protocol.hpp │ │ ├── handler_alloc_hook.hpp │ │ ├── handler_continuation_hook.hpp │ │ ├── handler_invoke_hook.hpp │ │ ├── high_resolution_timer.hpp │ │ ├── impl │ │ │ ├── any_io_executor.ipp │ │ │ ├── append.hpp │ │ │ ├── as_tuple.hpp │ │ │ ├── awaitable.hpp │ │ │ ├── buffered_read_stream.hpp │ │ │ ├── buffered_write_stream.hpp │ │ │ ├── cancellation_signal.ipp │ │ │ ├── co_spawn.hpp │ │ │ ├── connect.hpp │ │ │ ├── connect_pipe.hpp │ │ │ ├── connect_pipe.ipp │ │ │ ├── defer.hpp │ │ │ ├── deferred.hpp │ │ │ ├── detached.hpp │ │ │ ├── dispatch.hpp │ │ │ ├── error.ipp │ │ │ ├── error_code.ipp │ │ │ ├── execution_context.hpp │ │ │ ├── execution_context.ipp │ │ │ ├── executor.hpp │ │ │ ├── executor.ipp │ │ │ ├── handler_alloc_hook.ipp │ │ │ ├── io_context.hpp │ │ │ ├── io_context.ipp │ │ │ ├── multiple_exceptions.ipp │ │ │ ├── post.hpp │ │ │ ├── prepend.hpp │ │ │ ├── read.hpp │ │ │ ├── read_at.hpp │ │ │ ├── read_until.hpp │ │ │ ├── redirect_error.hpp │ │ │ ├── serial_port_base.hpp │ │ │ ├── serial_port_base.ipp │ │ │ ├── spawn.hpp │ │ │ ├── src.hpp │ │ │ ├── system_context.hpp │ │ │ ├── system_context.ipp │ │ │ ├── system_executor.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── thread_pool.ipp │ │ │ ├── use_awaitable.hpp │ │ │ ├── use_future.hpp │ │ │ ├── write.hpp │ │ │ └── write_at.hpp │ │ ├── io_context.hpp │ │ ├── io_context_strand.hpp │ │ ├── io_service.hpp │ │ ├── io_service_strand.hpp │ │ ├── ip │ │ │ ├── address.hpp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4_iterator.hpp │ │ │ ├── address_v4_range.hpp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6_iterator.hpp │ │ │ ├── address_v6_range.hpp │ │ │ ├── bad_address_cast.hpp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── basic_resolver.hpp │ │ │ ├── basic_resolver_entry.hpp │ │ │ ├── basic_resolver_iterator.hpp │ │ │ ├── basic_resolver_query.hpp │ │ │ ├── basic_resolver_results.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ ├── impl │ │ │ │ │ └── endpoint.ipp │ │ │ │ └── socket_option.hpp │ │ │ ├── host_name.hpp │ │ │ ├── icmp.hpp │ │ │ ├── impl │ │ │ │ ├── address.hpp │ │ │ │ ├── address.ipp │ │ │ │ ├── address_v4.hpp │ │ │ │ ├── address_v4.ipp │ │ │ │ ├── address_v6.hpp │ │ │ │ ├── address_v6.ipp │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ ├── host_name.ipp │ │ │ │ ├── network_v4.hpp │ │ │ │ ├── network_v4.ipp │ │ │ │ ├── network_v6.hpp │ │ │ │ └── network_v6.ipp │ │ │ ├── multicast.hpp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v6.hpp │ │ │ ├── resolver_base.hpp │ │ │ ├── resolver_query_base.hpp │ │ │ ├── tcp.hpp │ │ │ ├── udp.hpp │ │ │ ├── unicast.hpp │ │ │ └── v6_only.hpp │ │ ├── is_applicable_property.hpp │ │ ├── is_contiguous_iterator.hpp │ │ ├── is_executor.hpp │ │ ├── is_read_buffered.hpp │ │ ├── is_write_buffered.hpp │ │ ├── local │ │ │ ├── basic_endpoint.hpp │ │ │ ├── connect_pair.hpp │ │ │ ├── datagram_protocol.hpp │ │ │ ├── detail │ │ │ │ ├── endpoint.hpp │ │ │ │ └── impl │ │ │ │ │ └── endpoint.ipp │ │ │ └── stream_protocol.hpp │ │ ├── multiple_exceptions.hpp │ │ ├── packaged_task.hpp │ │ ├── placeholders.hpp │ │ ├── posix │ │ │ ├── basic_descriptor.hpp │ │ │ ├── basic_stream_descriptor.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_base.hpp │ │ │ └── stream_descriptor.hpp │ │ ├── post.hpp │ │ ├── prefer.hpp │ │ ├── prepend.hpp │ │ ├── query.hpp │ │ ├── random_access_file.hpp │ │ ├── read.hpp │ │ ├── read_at.hpp │ │ ├── read_until.hpp │ │ ├── readable_pipe.hpp │ │ ├── recycling_allocator.hpp │ │ ├── redirect_error.hpp │ │ ├── registered_buffer.hpp │ │ ├── require.hpp │ │ ├── require_concept.hpp │ │ ├── serial_port.hpp │ │ ├── serial_port_base.hpp │ │ ├── signal_set.hpp │ │ ├── socket_base.hpp │ │ ├── spawn.hpp │ │ ├── ssl.hpp │ │ ├── ssl │ │ │ ├── context.hpp │ │ │ ├── context_base.hpp │ │ │ ├── detail │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ ├── engine.hpp │ │ │ │ ├── handshake_op.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── engine.ipp │ │ │ │ │ └── openssl_init.ipp │ │ │ │ ├── io.hpp │ │ │ │ ├── openssl_init.hpp │ │ │ │ ├── openssl_types.hpp │ │ │ │ ├── password_callback.hpp │ │ │ │ ├── read_op.hpp │ │ │ │ ├── shutdown_op.hpp │ │ │ │ ├── stream_core.hpp │ │ │ │ ├── verify_callback.hpp │ │ │ │ └── write_op.hpp │ │ │ ├── error.hpp │ │ │ ├── host_name_verification.hpp │ │ │ ├── impl │ │ │ │ ├── context.hpp │ │ │ │ ├── context.ipp │ │ │ │ ├── error.ipp │ │ │ │ ├── host_name_verification.ipp │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ └── src.hpp │ │ │ ├── rfc2818_verification.hpp │ │ │ ├── stream.hpp │ │ │ ├── stream_base.hpp │ │ │ ├── verify_context.hpp │ │ │ └── verify_mode.hpp │ │ ├── static_thread_pool.hpp │ │ ├── steady_timer.hpp │ │ ├── strand.hpp │ │ ├── stream_file.hpp │ │ ├── streambuf.hpp │ │ ├── system_context.hpp │ │ ├── system_error.hpp │ │ ├── system_executor.hpp │ │ ├── system_timer.hpp │ │ ├── this_coro.hpp │ │ ├── thread.hpp │ │ ├── thread_pool.hpp │ │ ├── time_traits.hpp │ │ ├── traits │ │ │ ├── bulk_execute_free.hpp │ │ │ ├── bulk_execute_member.hpp │ │ │ ├── connect_free.hpp │ │ │ ├── connect_member.hpp │ │ │ ├── equality_comparable.hpp │ │ │ ├── execute_free.hpp │ │ │ ├── execute_member.hpp │ │ │ ├── prefer_free.hpp │ │ │ ├── prefer_member.hpp │ │ │ ├── query_free.hpp │ │ │ ├── query_member.hpp │ │ │ ├── query_static_constexpr_member.hpp │ │ │ ├── require_concept_free.hpp │ │ │ ├── require_concept_member.hpp │ │ │ ├── require_free.hpp │ │ │ ├── require_member.hpp │ │ │ ├── schedule_free.hpp │ │ │ ├── schedule_member.hpp │ │ │ ├── set_done_free.hpp │ │ │ ├── set_done_member.hpp │ │ │ ├── set_error_free.hpp │ │ │ ├── set_error_member.hpp │ │ │ ├── set_value_free.hpp │ │ │ ├── set_value_member.hpp │ │ │ ├── start_free.hpp │ │ │ ├── start_member.hpp │ │ │ ├── static_query.hpp │ │ │ ├── static_require.hpp │ │ │ ├── static_require_concept.hpp │ │ │ ├── submit_free.hpp │ │ │ └── submit_member.hpp │ │ ├── ts │ │ │ ├── buffer.hpp │ │ │ ├── executor.hpp │ │ │ ├── internet.hpp │ │ │ ├── io_context.hpp │ │ │ ├── net.hpp │ │ │ ├── netfwd.hpp │ │ │ ├── socket.hpp │ │ │ └── timer.hpp │ │ ├── unyield.hpp │ │ ├── use_awaitable.hpp │ │ ├── use_future.hpp │ │ ├── uses_executor.hpp │ │ ├── version.hpp │ │ ├── wait_traits.hpp │ │ ├── windows │ │ │ ├── basic_object_handle.hpp │ │ │ ├── basic_overlapped_handle.hpp │ │ │ ├── basic_random_access_handle.hpp │ │ │ ├── basic_stream_handle.hpp │ │ │ ├── object_handle.hpp │ │ │ ├── overlapped_handle.hpp │ │ │ ├── overlapped_ptr.hpp │ │ │ ├── random_access_handle.hpp │ │ │ └── stream_handle.hpp │ │ ├── writable_pipe.hpp │ │ ├── write.hpp │ │ ├── write_at.hpp │ │ └── yield.hpp │ ├── assimp │ │ ├── .editorconfig │ │ ├── Base64.hpp │ │ ├── BaseImporter.h │ │ ├── Bitmap.h │ │ ├── BlobIOSystem.h │ │ ├── ByteSwapper.h │ │ ├── ColladaMetaData.h │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ ├── CreateAnimMesh.h │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.hpp │ │ ├── Exceptional.h │ │ ├── Exporter.hpp │ │ ├── GenericProperty.h │ │ ├── GltfMaterial.h │ │ ├── Hash.h │ │ ├── IOStream.hpp │ │ ├── IOStreamBuffer.h │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LineSplitter.h │ │ ├── LogAux.h │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── MathFunctions.h │ │ ├── MemoryIOWrapper.h │ │ ├── NullLogger.hpp │ │ ├── ObjMaterial.h │ │ ├── ParsingUtils.h │ │ ├── Profiler.h │ │ ├── ProgressHandler.hpp │ │ ├── RemoveComments.h │ │ ├── SGSpatialSort.h │ │ ├── SceneCombiner.h │ │ ├── SkeletonMeshBuilder.h │ │ ├── SmallVector.h │ │ ├── SmoothingGroups.h │ │ ├── SmoothingGroups.inl │ │ ├── SpatialSort.h │ │ ├── StandardShapes.h │ │ ├── StreamReader.h │ │ ├── StreamWriter.h │ │ ├── StringComparison.h │ │ ├── StringUtils.h │ │ ├── Subdivision.h │ │ ├── TinyFormatter.h │ │ ├── Vertex.h │ │ ├── XMLTools.h │ │ ├── XmlParser.h │ │ ├── ZipArchiveIOSystem.h │ │ ├── aabb.h │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── commonMetaData.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── defs.h │ │ ├── fast_atof.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── pbrmaterial.h │ │ ├── port │ │ │ └── AndroidJNI │ │ │ │ ├── AndroidJNIIOSystem.h │ │ │ │ └── BundledAssetIOSystem.h │ │ ├── postprocess.h │ │ ├── qnan.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h │ ├── boost │ │ ├── assert.hpp │ │ ├── checked_delete.hpp │ │ ├── config.hpp │ │ ├── config │ │ │ ├── compiler │ │ │ │ └── visualc.hpp │ │ │ ├── platform │ │ │ │ └── win32.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ ├── stdlib │ │ │ │ └── dinkumware.hpp │ │ │ ├── suffix.hpp │ │ │ └── user.hpp │ │ ├── detail │ │ │ ├── bad_weak_ptr.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── shared_count.hpp │ │ │ ├── sp_counted_base.hpp │ │ │ ├── sp_counted_base_w32.hpp │ │ │ ├── sp_counted_impl.hpp │ │ │ └── workaround.hpp │ │ ├── shared_ptr.hpp │ │ ├── smart_ptr.hpp │ │ ├── throw_exception.hpp │ │ └── weak_ptr.hpp │ ├── conncpp.hpp │ ├── conncpp │ │ ├── CArray.hpp │ │ ├── CallableStatement.hpp │ │ ├── Connection.hpp │ │ ├── DatabaseMetaData.hpp │ │ ├── Driver.hpp │ │ ├── DriverManager.hpp │ │ ├── Exception.hpp │ │ ├── ParameterMetaData.hpp │ │ ├── PreparedStatement.hpp │ │ ├── ResultSet.hpp │ │ ├── ResultSetMetaData.hpp │ │ ├── SQLString.hpp │ │ ├── Savepoint.hpp │ │ ├── Statement.hpp │ │ ├── Types.hpp │ │ ├── Warning.hpp │ │ ├── buildconf.hpp │ │ ├── compat │ │ │ ├── Array.hpp │ │ │ ├── Executor.hpp │ │ │ ├── Object.hpp │ │ │ ├── SQLType.hpp │ │ │ └── Struct.hpp │ │ └── jdbccompat.hpp │ ├── enet.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_int2x2.hpp │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ ├── matrix_int2x3.hpp │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ ├── matrix_int2x4.hpp │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ ├── matrix_int3x2.hpp │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ ├── matrix_int3x3.hpp │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ ├── matrix_int3x4.hpp │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ ├── matrix_int4x2.hpp │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ ├── matrix_int4x3.hpp │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ ├── matrix_int4x4.hpp │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── matrix_uint2x2.hpp │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ ├── matrix_uint2x3.hpp │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ ├── matrix_uint2x4.hpp │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ ├── matrix_uint3x2.hpp │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ ├── matrix_uint3x3.hpp │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ ├── matrix_uint3x4.hpp │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ ├── matrix_uint4x2.hpp │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ ├── matrix_uint4x3.hpp │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ ├── matrix_uint4x4.hpp │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_integer.hpp │ │ │ ├── scalar_integer.inl │ │ │ ├── scalar_packing.hpp │ │ │ ├── scalar_packing.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_sized.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_sized.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_sized.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_sized.hpp │ │ │ ├── vector_integer.hpp │ │ │ ├── vector_integer.inl │ │ │ ├── vector_packing.hpp │ │ │ ├── vector_packing.inl │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_sized.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_sized.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_sized.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_sized.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── neon.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── json.hpp │ ├── librg │ │ ├── header │ │ │ ├── entity.h │ │ │ ├── general.h │ │ │ ├── packing.h │ │ │ ├── query.h │ │ │ └── types.h │ │ ├── librg.h │ │ └── librg_hedley.h │ └── lua │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h └── lib │ ├── debug │ ├── assimp.lib │ ├── librg_static.lib │ ├── lua544_static.lib │ ├── mariadbcpp.lib │ └── minhook.lib │ └── release │ ├── assimp.lib │ ├── librg_static.lib │ ├── lua544_static.lib │ ├── mariadbcpp.lib │ └── minhook.lib ├── globals ├── defs │ ├── general_purpose_macros.h │ ├── glm.h │ ├── json.h │ ├── libs.h │ ├── rg_defs.h │ └── standard.h ├── globals.vcxitems ├── globals.vcxitems.user └── memory │ ├── defs.h │ └── memory.h ├── hde ├── hde.vcxitems ├── hde32.cpp ├── hde32.h ├── pstdint.h └── table32.h ├── launcher ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Assets │ ├── cover.png │ ├── icon.ico │ └── icon.png ├── Helpers │ ├── BoolToServerProtectionConverter.cs │ ├── BoolToVisibilityConverter.cs │ ├── EnumToBooleanConverter.cs │ ├── Extensions │ │ └── ArrayExtensions.cs │ ├── InverseBoolToVisibilityConverter.cs │ ├── InverseBooleanConverter.cs │ └── ObjectToVisibilityConverter.cs ├── Models │ ├── AppConfig.cs │ ├── DashboardNew.cs │ ├── DataColor.cs │ ├── GameSettings.cs │ ├── GameSettingsEnums.cs │ ├── LauncherSettings.cs │ ├── LauncherSettingsEnums.cs │ ├── PlayerInformation.cs │ └── ServerInformation.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Services │ ├── ApplicationHostService.cs │ ├── ClientExecutionService.cs │ ├── Connection │ │ ├── ConnectionCommon.cs │ │ ├── IClientService.cs │ │ └── IServerService.cs │ ├── IRepositoryService.cs │ ├── PageService.cs │ └── Repositories │ │ └── RegistryRepositoryService.cs ├── ViewModels │ ├── ContainerViewModel.cs │ ├── DashboardViewModel.cs │ ├── GameSettingsViewModel.cs │ ├── ServerBrowserViewModel.cs │ ├── SettingsViewModel.cs │ └── UpdateClientModuleResult.cs ├── Views │ ├── Container.xaml │ ├── Container.xaml.cs │ └── Pages │ │ ├── DashboardPage.xaml │ │ ├── DashboardPage.xaml.cs │ │ ├── GameSettingsPage.xaml │ │ ├── GameSettingsPage.xaml.cs │ │ ├── ServerBrowserPage.xaml │ │ ├── ServerBrowserPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ └── SettingsPage.xaml.cs ├── app.manifest ├── launcher.csproj ├── launcher.csproj.user └── obj │ ├── Release │ └── net6.0-windows │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── App.baml │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── GeneratedInternalTypeHelper.g.cs │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ ├── Views │ │ ├── Container.g.cs │ │ ├── Container.g.i.cs │ │ └── Pages │ │ │ ├── DashboardPage.g.cs │ │ │ ├── DashboardPage.g.i.cs │ │ │ ├── GameSettingsPage.g.cs │ │ │ ├── GameSettingsPage.g.i.cs │ │ │ ├── ServerBrowserPage.g.cs │ │ │ ├── ServerBrowserPage.g.i.cs │ │ │ ├── SettingsPage.g.cs │ │ │ └── SettingsPage.g.i.cs │ │ ├── launcher.AssemblyInfo.cs │ │ ├── launcher.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── launcher.Properties.Resources.resources │ │ ├── launcher.csproj.FileListAbsolute.txt │ │ ├── launcher.g.resources │ │ ├── launcher_MarkupCompile.lref │ │ └── win-x64 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── App.baml │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── GeneratedInternalTypeHelper.g.cs │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ ├── Views │ │ ├── Container.baml │ │ ├── Container.g.cs │ │ ├── Container.g.i.cs │ │ └── Pages │ │ │ ├── DashboardPage.baml │ │ │ ├── DashboardPage.g.cs │ │ │ ├── DashboardPage.g.i.cs │ │ │ ├── GameSettingsPage.baml │ │ │ ├── GameSettingsPage.g.cs │ │ │ ├── GameSettingsPage.g.i.cs │ │ │ ├── ServerBrowserPage.baml │ │ │ ├── ServerBrowserPage.g.cs │ │ │ ├── ServerBrowserPage.g.i.cs │ │ │ ├── SettingsPage.baml │ │ │ ├── SettingsPage.g.cs │ │ │ └── SettingsPage.g.i.cs │ │ ├── launcher.AssemblyInfo.cs │ │ ├── launcher.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── launcher.Properties.Resources.resources │ │ ├── launcher.csproj.CopyComplete │ │ ├── launcher.csproj.FileListAbsolute.txt │ │ ├── launcher.g.resources │ │ └── launcher_MarkupCompile.lref │ ├── launcher.csproj.nuget.g.props │ ├── launcher.csproj.nuget.g.targets │ └── publish │ └── win-x64 │ ├── launcher.csproj.nuget.g.props │ └── launcher.csproj.nuget.g.targets ├── loader ├── code │ ├── defs │ │ └── standard.h │ ├── ini │ │ ├── INIReader.cpp │ │ ├── INIReader.h │ │ ├── ini.c │ │ └── ini.h │ └── loader.cpp ├── loader.vcxproj ├── loader.vcxproj.filters └── loader.vcxproj.user ├── masterserver ├── code │ ├── base │ │ ├── base.cpp │ │ └── base.h │ ├── client │ │ ├── ms_client.cpp │ │ └── ms_client.h │ ├── main.cpp │ ├── ms │ │ ├── ms.cpp │ │ └── ms.h │ └── server │ │ ├── ms_server.cpp │ │ └── ms_server.h ├── masterserver.vcxproj ├── masterserver.vcxproj.filters └── masterserver.vcxproj.user ├── misc └── design │ ├── jc launcher packet layout specs.txt │ └── resources sync mechanism.txt ├── profiling ├── bug_ripper │ ├── bug_ripper.cpp │ └── bug_ripper.h ├── prof │ ├── prof.cpp │ └── prof.h ├── profiling.vcxitems ├── profiling.vcxitems.user └── registry │ ├── registry.cpp │ └── registry.h ├── reversing ├── ce & reclass │ ├── JustCause.CT │ └── spawn point │ │ └── agent │ │ ├── spider_0.sptr │ │ ├── spider_0_2.sptr │ │ └── spider_2.sptr ├── docs │ └── JC │ │ ├── .obsidian │ │ ├── themes │ │ │ └── Minimal.css │ │ └── workspace │ │ ├── TODO.md │ │ ├── class hierarchy.drawio │ │ ├── class_functions.md │ │ ├── classes.md │ │ ├── functions.md │ │ ├── game │ │ ├── SaveGameData Layout.md │ │ ├── archives to dump.cpp │ │ ├── archives to dump.h │ │ ├── archives.cpp │ │ ├── archives.h │ │ ├── assets_list.txt │ │ ├── file_dump.txt │ │ ├── hash to name.cpp │ │ ├── hash_dump.txt │ │ ├── item pickups loading dump.txt │ │ ├── particle_effects.md │ │ ├── spawn_points_vcall_trace.txt │ │ ├── string_dump.txt │ │ └── vehicle dump + colors.txt │ │ ├── globals.md │ │ ├── tony_daily │ │ └── 2022 │ │ │ ├── 10 October │ │ │ ├── 14-10-2022.md │ │ │ ├── 16-10-2022.md │ │ │ ├── 17-10-2022.md │ │ │ ├── 18-10-2022.md │ │ │ └── 21-10-2022.md │ │ │ ├── 5 May │ │ │ ├── 16-05-2022 (merged).md │ │ │ ├── 17-05-2022 (merged).md │ │ │ ├── 19-05-2022 (merged).md │ │ │ ├── 20-05-2022 (merged).md │ │ │ ├── 21-05-2022 (merged).md │ │ │ ├── 22-05-2022 (merged).md │ │ │ ├── 23-05-2022 (merged).md │ │ │ ├── 25-05-2022 (merged).md │ │ │ ├── 26-05-2022 (merged).md │ │ │ ├── 27-05-2022 (merged).md │ │ │ └── 31-05-2022.md │ │ │ ├── 6 June │ │ │ ├── 01-06-2022.md │ │ │ ├── 02-06-2022.md │ │ │ ├── 04-06-2022.md │ │ │ ├── 05-06-2022.md │ │ │ ├── 06-06-2022.md │ │ │ ├── 07-06-2022.md │ │ │ ├── 08-06-2022.md │ │ │ ├── 09-06-2022.md │ │ │ ├── 13-06-2022.md │ │ │ ├── 14-06-2022.md │ │ │ ├── 15-06-2022.md │ │ │ ├── 16-06-2022.md │ │ │ ├── 18-06-2022.md │ │ │ ├── 19-06-2022.md │ │ │ ├── 21-06-2022.md │ │ │ └── 28-06-2022.md │ │ │ ├── 7 July │ │ │ ├── 05-07-2022.md │ │ │ ├── 06-07-2022.md │ │ │ ├── 07-07-2022.md │ │ │ ├── 09-07-2022.md │ │ │ ├── 10-07-2022.md │ │ │ ├── 12-07-2022.md │ │ │ ├── 13-07-2022.md │ │ │ ├── 14-07-2022.md │ │ │ ├── 15-07-2022.md │ │ │ ├── 16-07-2022.md │ │ │ ├── 18-07-2022.md │ │ │ ├── 21-07-2022.md │ │ │ ├── 22-07-2022.md │ │ │ ├── 23-07-2022.md │ │ │ ├── 24-07-2022.md │ │ │ ├── 25-07-2022.md │ │ │ ├── 26-07-2022.md │ │ │ ├── 29-07-2022.md │ │ │ ├── 30-07-2022.md │ │ │ └── 31-07-2022.md │ │ │ ├── 8 August │ │ │ ├── 01-08-2022.md │ │ │ ├── 03-08-2022.md │ │ │ ├── 04-08-2022.md │ │ │ ├── 05-08-2022.md │ │ │ ├── 07-08-2022.md │ │ │ ├── 08-08-2022.md │ │ │ ├── 09-08-2022.md │ │ │ ├── 11-08-2022.md │ │ │ ├── 13-08-2022.md │ │ │ ├── 14-08-2022.md │ │ │ ├── 15-08-2022.md │ │ │ ├── 16-08-2022.md │ │ │ ├── 18-08-2022.md │ │ │ ├── 19-08-2022.md │ │ │ ├── 20-08-2022.md │ │ │ ├── 21-08-2022.md │ │ │ ├── 22-08-2022.md │ │ │ ├── 23-08-2022.md │ │ │ ├── 24-08-2022.md │ │ │ ├── 25-08-2022.md │ │ │ ├── 26-08-2022.md │ │ │ ├── 27-08-2022.md │ │ │ ├── 28-08-2022.md │ │ │ ├── 29-08-2022.md │ │ │ ├── 30-08-2022.md │ │ │ └── 31-08-2022.md │ │ │ └── 9 September │ │ │ └── 20-09-2022.md │ │ ├── vacations logs.txt │ │ └── vtables.md ├── dumps │ ├── 0x304c5a9.xml │ ├── 0x676244d9.xml │ └── JCSaves.sav └── info │ ├── dbg │ ├── create custom model with textures.txt │ ├── for npc variant.txt │ ├── garage door & events.cpp │ ├── get all physical objects and apply velocity to them.txt │ ├── lights.txt │ ├── map walking.txt │ ├── skeleton debug.txt │ ├── string_dumps.txt │ ├── vtable dumper.txt │ └── vtable hooker.txt │ └── ida │ ├── ida_base_structs.h │ ├── ida_base_structs.hpp │ ├── ida_game_structs.h │ └── ida_game_structs.hpp ├── rg ├── rg.vcxitems ├── rg.vcxitems.user └── rg │ ├── rg.cpp │ └── rg.h ├── scripting ├── luas.h ├── resource │ ├── resource.cpp │ └── resource.h ├── resource_sys │ ├── resource_system.cpp │ └── resource_system.h ├── script │ ├── lua_ctx │ │ ├── script_events.h │ │ ├── script_globals.h │ │ ├── script_objects.h │ │ ├── script_registering.cpp │ │ └── script_registering.h │ ├── script.cpp │ ├── script.h │ └── util │ │ ├── script_timer.cpp │ │ └── script_timer.h ├── scripting.vcxitems └── scripting.vcxitems.user ├── server ├── code │ ├── main.cpp │ └── mp │ │ ├── config.cpp │ │ ├── config.h │ │ ├── net.cpp │ │ ├── net.h │ │ ├── settings.cpp │ │ ├── settings.h │ │ ├── users_db.cpp │ │ └── users_db.h ├── server.vcxproj ├── server.vcxproj.filters └── server.vcxproj.user ├── shared ├── game │ ├── shared │ │ ├── character.h │ │ ├── npc_variant.h │ │ ├── stances.h │ │ └── vehicle_seat.h │ └── transform │ │ ├── transform.cpp │ │ └── transform.h ├── math │ └── math.h ├── net │ ├── channels.h │ ├── interface.cpp │ ├── interface.h │ ├── obj_serializer.cpp │ ├── obj_serializer.h │ ├── packet.h │ └── packets.h ├── shared.vcxitems ├── shared.vcxitems.user └── shared_mp │ ├── net_handlers │ ├── all.h │ ├── chat │ │ ├── nh_chat.cpp │ │ └── nh_chat.h │ ├── debug │ │ ├── nh_dbg.cpp │ │ └── nh_dbg.h │ ├── generic │ │ ├── player │ │ │ ├── nh_player.cpp │ │ │ └── nh_player.h │ │ └── vehicle │ │ │ ├── nh_vehicle.cpp │ │ │ └── nh_vehicle.h │ ├── player_client │ │ ├── nh_player_client.cpp │ │ └── nh_player_client.h │ └── world │ │ ├── nh_world.cpp │ │ └── nh_world.h │ ├── object_lists.cpp │ ├── object_lists.h │ ├── objs │ ├── all.h │ ├── blip_net.cpp │ ├── blip_net.h │ ├── damageable_net_object.cpp │ ├── damageable_net_object.h │ ├── grenade_net.cpp │ ├── grenade_net.h │ ├── net_object.cpp │ ├── net_object.h │ ├── pickup_net.cpp │ ├── pickup_net.h │ ├── player.cpp │ ├── player.h │ ├── vehicle_net.cpp │ └── vehicle_net.h │ └── player_client │ ├── player_client.cpp │ └── player_client.h ├── sql ├── sql.cpp ├── sql.h ├── sql.vcxitems └── sql.vcxitems.user ├── tcp ├── netcp_interface.cpp ├── netcp_interface.h ├── packets.h ├── ports.h ├── tcp.vcxitems └── tcp.vcxitems.user ├── tcp_client ├── tcp_client.cpp ├── tcp_client.h ├── tcp_client.vcxitems └── tcp_client.vcxitems.user ├── tcp_server ├── tcp_server.cpp ├── tcp_server.h ├── tcp_server.vcxitems └── tcp_server.vcxitems.user ├── thread_system ├── thread_system.vcxitems ├── thread_system.vcxitems.user └── thread_system │ ├── cancellable_sleep.h │ ├── event.h │ ├── stl │ ├── queue.h │ └── vector.h │ ├── thread_handle.cpp │ ├── thread_handle.h │ ├── thread_system.cpp │ └── thread_system.h └── utils ├── crypto ├── sha512.cpp └── sha512.h ├── serializer ├── serializer.cpp └── serializer.h ├── timer ├── timer.cpp └── timer.h ├── utils.vcxitems ├── utils.vcxitems.user └── utils ├── utils.cpp └── utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /JustCauseMP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/JustCauseMP.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/README.md -------------------------------------------------------------------------------- /asset_converter/asset_converter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/asset_converter/asset_converter.vcxproj -------------------------------------------------------------------------------- /asset_converter/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/asset_converter/code/main.cpp -------------------------------------------------------------------------------- /backup.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/backup.clang-format -------------------------------------------------------------------------------- /client/client - Backup.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/client - Backup.vcxproj.user -------------------------------------------------------------------------------- /client/client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/client.vcxproj -------------------------------------------------------------------------------- /client/client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/client.vcxproj.filters -------------------------------------------------------------------------------- /client/client.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/client.vcxproj.user -------------------------------------------------------------------------------- /client/code/core/clean_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/clean_dbg.cpp -------------------------------------------------------------------------------- /client/code/core/clean_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/clean_dbg.h -------------------------------------------------------------------------------- /client/code/core/dbg_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/dbg_ui.cpp -------------------------------------------------------------------------------- /client/code/core/dbg_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/dbg_ui.h -------------------------------------------------------------------------------- /client/code/core/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/hooks.cpp -------------------------------------------------------------------------------- /client/code/core/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/hooks.h -------------------------------------------------------------------------------- /client/code/core/keycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/keycode.cpp -------------------------------------------------------------------------------- /client/code/core/keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/keycode.h -------------------------------------------------------------------------------- /client/code/core/patching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/patching.h -------------------------------------------------------------------------------- /client/code/core/task_system/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/task_system/task.cpp -------------------------------------------------------------------------------- /client/code/core/task_system/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/task_system/task.h -------------------------------------------------------------------------------- /client/code/core/task_system/task_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/task_system/task_system.h -------------------------------------------------------------------------------- /client/code/core/test_units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/test_units.cpp -------------------------------------------------------------------------------- /client/code/core/test_units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/test_units.h -------------------------------------------------------------------------------- /client/code/core/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/ui.cpp -------------------------------------------------------------------------------- /client/code/core/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/core/ui.h -------------------------------------------------------------------------------- /client/code/defs/client_basic.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define FAST_LOAD 1 -------------------------------------------------------------------------------- /client/code/game/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/globals.cpp -------------------------------------------------------------------------------- /client/code/game/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/globals.h -------------------------------------------------------------------------------- /client/code/game/object/asset/asset_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/asset/asset_anim.h -------------------------------------------------------------------------------- /client/code/game/object/asset/asset_rbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/asset/asset_rbm.h -------------------------------------------------------------------------------- /client/code/game/object/base/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/base/base.cpp -------------------------------------------------------------------------------- /client/code/game/object/base/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/base/base.h -------------------------------------------------------------------------------- /client/code/game/object/base/comps/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/base/comps/model.h -------------------------------------------------------------------------------- /client/code/game/object/camera/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/camera/camera.cpp -------------------------------------------------------------------------------- /client/code/game/object/camera/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/camera/camera.h -------------------------------------------------------------------------------- /client/code/game/object/item/item_pickup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/item/item_pickup.h -------------------------------------------------------------------------------- /client/code/game/object/ladder/ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/ladder/ladder.cpp -------------------------------------------------------------------------------- /client/code/game/object/ladder/ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/ladder/ladder.h -------------------------------------------------------------------------------- /client/code/game/object/sound/sound_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/sound/sound_bank.h -------------------------------------------------------------------------------- /client/code/game/object/ui/map_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/ui/map_icon.cpp -------------------------------------------------------------------------------- /client/code/game/object/ui/map_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/ui/map_icon.h -------------------------------------------------------------------------------- /client/code/game/object/ui/map_icon_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/ui/map_icon_type.h -------------------------------------------------------------------------------- /client/code/game/object/vars/anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/anims.h -------------------------------------------------------------------------------- /client/code/game/object/vars/fxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/fxs.h -------------------------------------------------------------------------------- /client/code/game/object/vars/locations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/locations.h -------------------------------------------------------------------------------- /client/code/game/object/vars/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/models.h -------------------------------------------------------------------------------- /client/code/game/object/vars/pfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/pfxs.h -------------------------------------------------------------------------------- /client/code/game/object/vars/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/ui.h -------------------------------------------------------------------------------- /client/code/game/object/vars/weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vars/weapons.h -------------------------------------------------------------------------------- /client/code/game/object/vehicle/airplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/airplane.h -------------------------------------------------------------------------------- /client/code/game/object/vehicle/boat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/boat.cpp -------------------------------------------------------------------------------- /client/code/game/object/vehicle/boat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/boat.h -------------------------------------------------------------------------------- /client/code/game/object/vehicle/car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/car.cpp -------------------------------------------------------------------------------- /client/code/game/object/vehicle/car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/car.h -------------------------------------------------------------------------------- /client/code/game/object/vehicle/tank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/tank.cpp -------------------------------------------------------------------------------- /client/code/game/object/vehicle/tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/tank.h -------------------------------------------------------------------------------- /client/code/game/object/vehicle/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/vehicle/vehicle.h -------------------------------------------------------------------------------- /client/code/game/object/weapon/bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/weapon/bullet.cpp -------------------------------------------------------------------------------- /client/code/game/object/weapon/bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/weapon/bullet.h -------------------------------------------------------------------------------- /client/code/game/object/weapon/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/weapon/weapon.cpp -------------------------------------------------------------------------------- /client/code/game/object/weapon/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/object/weapon/weapon.h -------------------------------------------------------------------------------- /client/code/game/sys/ai/ai_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/ai/ai_core.cpp -------------------------------------------------------------------------------- /client/code/game/sys/ai/ai_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/ai/ai_core.h -------------------------------------------------------------------------------- /client/code/game/sys/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/all.h -------------------------------------------------------------------------------- /client/code/game/sys/core/factory_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/core/factory_system.h -------------------------------------------------------------------------------- /client/code/game/sys/game/game_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_control.cpp -------------------------------------------------------------------------------- /client/code/game/sys/game/game_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_control.h -------------------------------------------------------------------------------- /client/code/game/sys/game/game_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_ctx.cpp -------------------------------------------------------------------------------- /client/code/game/sys/game/game_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_ctx.h -------------------------------------------------------------------------------- /client/code/game/sys/game/game_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_status.cpp -------------------------------------------------------------------------------- /client/code/game/sys/game/game_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/game/game_status.h -------------------------------------------------------------------------------- /client/code/game/sys/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/renderer/renderer.cpp -------------------------------------------------------------------------------- /client/code/game/sys/renderer/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/renderer/renderer.h -------------------------------------------------------------------------------- /client/code/game/sys/resource/archives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/resource/archives.cpp -------------------------------------------------------------------------------- /client/code/game/sys/resource/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/resource/archives.h -------------------------------------------------------------------------------- /client/code/game/sys/resource/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/resource/physics.cpp -------------------------------------------------------------------------------- /client/code/game/sys/resource/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/resource/physics.h -------------------------------------------------------------------------------- /client/code/game/sys/sound/sound_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/sound/sound_system.h -------------------------------------------------------------------------------- /client/code/game/sys/time/time_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/time/time_system.cpp -------------------------------------------------------------------------------- /client/code/game/sys/time/time_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/time/time_system.h -------------------------------------------------------------------------------- /client/code/game/sys/weapon/ammo_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/weapon/ammo_manager.h -------------------------------------------------------------------------------- /client/code/game/sys/world/day_cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/world/day_cycle.cpp -------------------------------------------------------------------------------- /client/code/game/sys/world/day_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/world/day_cycle.h -------------------------------------------------------------------------------- /client/code/game/sys/world/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/world/world.cpp -------------------------------------------------------------------------------- /client/code/game/sys/world/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/game/sys/world/world.h -------------------------------------------------------------------------------- /client/code/havok/character_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/character_proxy.cpp -------------------------------------------------------------------------------- /client/code/havok/character_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/character_proxy.h -------------------------------------------------------------------------------- /client/code/havok/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/defs.h -------------------------------------------------------------------------------- /client/code/havok/motion_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/motion_state.cpp -------------------------------------------------------------------------------- /client/code/havok/motion_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/motion_state.h -------------------------------------------------------------------------------- /client/code/havok/simple_shape_phantom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/simple_shape_phantom.cpp -------------------------------------------------------------------------------- /client/code/havok/simple_shape_phantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/havok/simple_shape_phantom.h -------------------------------------------------------------------------------- /client/code/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imconfig.h -------------------------------------------------------------------------------- /client/code/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui.h -------------------------------------------------------------------------------- /client/code/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /client/code/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /client/code/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_internal.h -------------------------------------------------------------------------------- /client/code/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /client/code/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /client/code/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /client/code/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /client/code/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /client/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/main.cpp -------------------------------------------------------------------------------- /client/code/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/main.h -------------------------------------------------------------------------------- /client/code/mp/chat/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/chat/chat.cpp -------------------------------------------------------------------------------- /client/code/mp/chat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/chat/chat.h -------------------------------------------------------------------------------- /client/code/mp/cmd/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/cmd/cmd.cpp -------------------------------------------------------------------------------- /client/code/mp/cmd/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/cmd/cmd.h -------------------------------------------------------------------------------- /client/code/mp/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/logic.cpp -------------------------------------------------------------------------------- /client/code/mp/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/logic.h -------------------------------------------------------------------------------- /client/code/mp/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/net.cpp -------------------------------------------------------------------------------- /client/code/mp/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/mp/net.h -------------------------------------------------------------------------------- /client/code/patches/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/patches/patches.cpp -------------------------------------------------------------------------------- /client/code/patches/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/patches/patches.h -------------------------------------------------------------------------------- /client/code/stl/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/stl/map.h -------------------------------------------------------------------------------- /client/code/stl/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/stl/string.h -------------------------------------------------------------------------------- /client/code/stl/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/code/stl/vec.h -------------------------------------------------------------------------------- /client/rsrc/bug_ripper_ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/rsrc/bug_ripper_ui.rc -------------------------------------------------------------------------------- /client/rsrc/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/rsrc/font.ttf -------------------------------------------------------------------------------- /client/rsrc/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/rsrc/icon.ico -------------------------------------------------------------------------------- /client/rsrc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/rsrc/resource.h -------------------------------------------------------------------------------- /client/rsrc/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/client/rsrc/resource.rc -------------------------------------------------------------------------------- /dinput8/code/ModuleList/ModuleList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/code/ModuleList/ModuleList.hpp -------------------------------------------------------------------------------- /dinput8/code/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/code/dllmain.cpp -------------------------------------------------------------------------------- /dinput8/code/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/code/dllmain.h -------------------------------------------------------------------------------- /dinput8/code/x86.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/code/x86.def -------------------------------------------------------------------------------- /dinput8/dinput8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/dinput8.vcxproj -------------------------------------------------------------------------------- /dinput8/dinput8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/dinput8.vcxproj.filters -------------------------------------------------------------------------------- /dinput8/dinput8.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/dinput8/dinput8.vcxproj.user -------------------------------------------------------------------------------- /external/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/MinHook.h -------------------------------------------------------------------------------- /external/include/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio.hpp -------------------------------------------------------------------------------- /external/include/asio/any_io_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/any_io_executor.hpp -------------------------------------------------------------------------------- /external/include/asio/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/append.hpp -------------------------------------------------------------------------------- /external/include/asio/as_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/as_tuple.hpp -------------------------------------------------------------------------------- /external/include/asio/associator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/associator.hpp -------------------------------------------------------------------------------- /external/include/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/async_result.hpp -------------------------------------------------------------------------------- /external/include/asio/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/awaitable.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_file.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_socket.hpp -------------------------------------------------------------------------------- /external/include/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /external/include/asio/bind_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/bind_allocator.hpp -------------------------------------------------------------------------------- /external/include/asio/bind_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/bind_executor.hpp -------------------------------------------------------------------------------- /external/include/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/buffer.hpp -------------------------------------------------------------------------------- /external/include/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /external/include/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /external/include/asio/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/co_spawn.hpp -------------------------------------------------------------------------------- /external/include/asio/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/compose.hpp -------------------------------------------------------------------------------- /external/include/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/connect.hpp -------------------------------------------------------------------------------- /external/include/asio/connect_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/connect_pipe.hpp -------------------------------------------------------------------------------- /external/include/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/coroutine.hpp -------------------------------------------------------------------------------- /external/include/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /external/include/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/defer.hpp -------------------------------------------------------------------------------- /external/include/asio/deferred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/deferred.hpp -------------------------------------------------------------------------------- /external/include/asio/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detached.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/array.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/assert.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/chrono.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/config.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/event.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/exception.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/future.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/global.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/limits.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/memory.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/operation.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/thread.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/utility.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /external/include/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /external/include/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/dispatch.hpp -------------------------------------------------------------------------------- /external/include/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/error.hpp -------------------------------------------------------------------------------- /external/include/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/error_code.hpp -------------------------------------------------------------------------------- /external/include/asio/execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/execution.hpp -------------------------------------------------------------------------------- /external/include/asio/execution/sender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/execution/sender.hpp -------------------------------------------------------------------------------- /external/include/asio/execution/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/execution/start.hpp -------------------------------------------------------------------------------- /external/include/asio/execution/submit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/execution/submit.hpp -------------------------------------------------------------------------------- /external/include/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/executor.hpp -------------------------------------------------------------------------------- /external/include/asio/file_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/file_base.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/append.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/as_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/as_tuple.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/awaitable.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/co_spawn.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/connect.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/defer.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/deferred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/deferred.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/detached.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/error.ipp -------------------------------------------------------------------------------- /external/include/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /external/include/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/executor.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/executor.ipp -------------------------------------------------------------------------------- /external/include/asio/impl/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/io_context.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/io_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/io_context.ipp -------------------------------------------------------------------------------- /external/include/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/post.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/prepend.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/read.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/src.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /external/include/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/write.hpp -------------------------------------------------------------------------------- /external/include/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /external/include/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/io_context.hpp -------------------------------------------------------------------------------- /external/include/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/io_service.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/address.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /external/include/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/resolver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/resolver_base.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/udp.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /external/include/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /external/include/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/is_executor.hpp -------------------------------------------------------------------------------- /external/include/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /external/include/asio/packaged_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/packaged_task.hpp -------------------------------------------------------------------------------- /external/include/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/placeholders.hpp -------------------------------------------------------------------------------- /external/include/asio/posix/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/posix/descriptor.hpp -------------------------------------------------------------------------------- /external/include/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/post.hpp -------------------------------------------------------------------------------- /external/include/asio/prefer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/prefer.hpp -------------------------------------------------------------------------------- /external/include/asio/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/prepend.hpp -------------------------------------------------------------------------------- /external/include/asio/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/query.hpp -------------------------------------------------------------------------------- /external/include/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/read.hpp -------------------------------------------------------------------------------- /external/include/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/read_at.hpp -------------------------------------------------------------------------------- /external/include/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/read_until.hpp -------------------------------------------------------------------------------- /external/include/asio/readable_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/readable_pipe.hpp -------------------------------------------------------------------------------- /external/include/asio/redirect_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/redirect_error.hpp -------------------------------------------------------------------------------- /external/include/asio/require.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/require.hpp -------------------------------------------------------------------------------- /external/include/asio/require_concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/require_concept.hpp -------------------------------------------------------------------------------- /external/include/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/serial_port.hpp -------------------------------------------------------------------------------- /external/include/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /external/include/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/signal_set.hpp -------------------------------------------------------------------------------- /external/include/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/socket_base.hpp -------------------------------------------------------------------------------- /external/include/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/spawn.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/context.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/error.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /external/include/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /external/include/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /external/include/asio/ssl/verify_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ssl/verify_mode.hpp -------------------------------------------------------------------------------- /external/include/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/steady_timer.hpp -------------------------------------------------------------------------------- /external/include/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/strand.hpp -------------------------------------------------------------------------------- /external/include/asio/stream_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/stream_file.hpp -------------------------------------------------------------------------------- /external/include/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/streambuf.hpp -------------------------------------------------------------------------------- /external/include/asio/system_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/system_context.hpp -------------------------------------------------------------------------------- /external/include/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/system_error.hpp -------------------------------------------------------------------------------- /external/include/asio/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/system_executor.hpp -------------------------------------------------------------------------------- /external/include/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/system_timer.hpp -------------------------------------------------------------------------------- /external/include/asio/this_coro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/this_coro.hpp -------------------------------------------------------------------------------- /external/include/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/thread.hpp -------------------------------------------------------------------------------- /external/include/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/thread_pool.hpp -------------------------------------------------------------------------------- /external/include/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/time_traits.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/executor.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/internet.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/io_context.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/net.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/socket.hpp -------------------------------------------------------------------------------- /external/include/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/ts/timer.hpp -------------------------------------------------------------------------------- /external/include/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/unyield.hpp -------------------------------------------------------------------------------- /external/include/asio/use_awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/use_awaitable.hpp -------------------------------------------------------------------------------- /external/include/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/use_future.hpp -------------------------------------------------------------------------------- /external/include/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/uses_executor.hpp -------------------------------------------------------------------------------- /external/include/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/version.hpp -------------------------------------------------------------------------------- /external/include/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/wait_traits.hpp -------------------------------------------------------------------------------- /external/include/asio/writable_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/writable_pipe.hpp -------------------------------------------------------------------------------- /external/include/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/write.hpp -------------------------------------------------------------------------------- /external/include/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/write_at.hpp -------------------------------------------------------------------------------- /external/include/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/asio/yield.hpp -------------------------------------------------------------------------------- /external/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/.editorconfig -------------------------------------------------------------------------------- /external/include/assimp/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Base64.hpp -------------------------------------------------------------------------------- /external/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /external/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /external/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /external/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /external/include/assimp/ColladaMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/ColladaMetaData.h -------------------------------------------------------------------------------- /external/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /external/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /external/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /external/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /external/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /external/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /external/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /external/include/assimp/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/GenericProperty.h -------------------------------------------------------------------------------- /external/include/assimp/GltfMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/GltfMaterial.h -------------------------------------------------------------------------------- /external/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Hash.h -------------------------------------------------------------------------------- /external/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /external/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /external/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /external/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /external/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /external/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/LogAux.h -------------------------------------------------------------------------------- /external/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /external/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /external/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /external/include/assimp/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/MemoryIOWrapper.h -------------------------------------------------------------------------------- /external/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /external/include/assimp/ObjMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/ObjMaterial.h -------------------------------------------------------------------------------- /external/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /external/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Profiler.h -------------------------------------------------------------------------------- /external/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /external/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /external/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /external/include/assimp/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/SmallVector.h -------------------------------------------------------------------------------- /external/include/assimp/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/SmoothingGroups.h -------------------------------------------------------------------------------- /external/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /external/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /external/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /external/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /external/include/assimp/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/StringComparison.h -------------------------------------------------------------------------------- /external/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /external/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /external/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /external/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/Vertex.h -------------------------------------------------------------------------------- /external/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /external/include/assimp/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/XmlParser.h -------------------------------------------------------------------------------- /external/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/aabb.h -------------------------------------------------------------------------------- /external/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /external/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/anim.h -------------------------------------------------------------------------------- /external/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/camera.h -------------------------------------------------------------------------------- /external/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/cexport.h -------------------------------------------------------------------------------- /external/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/cfileio.h -------------------------------------------------------------------------------- /external/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/cimport.h -------------------------------------------------------------------------------- /external/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/color4.h -------------------------------------------------------------------------------- /external/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/color4.inl -------------------------------------------------------------------------------- /external/include/assimp/commonMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/commonMetaData.h -------------------------------------------------------------------------------- /external/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/config.h -------------------------------------------------------------------------------- /external/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/config.h.in -------------------------------------------------------------------------------- /external/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/defs.h -------------------------------------------------------------------------------- /external/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /external/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /external/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/light.h -------------------------------------------------------------------------------- /external/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/material.h -------------------------------------------------------------------------------- /external/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/material.inl -------------------------------------------------------------------------------- /external/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /external/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /external/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /external/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /external/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/mesh.h -------------------------------------------------------------------------------- /external/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/metadata.h -------------------------------------------------------------------------------- /external/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /external/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/postprocess.h -------------------------------------------------------------------------------- /external/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/qnan.h -------------------------------------------------------------------------------- /external/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/quaternion.h -------------------------------------------------------------------------------- /external/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /external/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/scene.h -------------------------------------------------------------------------------- /external/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/texture.h -------------------------------------------------------------------------------- /external/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/types.h -------------------------------------------------------------------------------- /external/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/vector2.h -------------------------------------------------------------------------------- /external/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/vector2.inl -------------------------------------------------------------------------------- /external/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/vector3.h -------------------------------------------------------------------------------- /external/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/vector3.inl -------------------------------------------------------------------------------- /external/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/assimp/version.h -------------------------------------------------------------------------------- /external/include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/assert.hpp -------------------------------------------------------------------------------- /external/include/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/checked_delete.hpp -------------------------------------------------------------------------------- /external/include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/config.hpp -------------------------------------------------------------------------------- /external/include/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/config/suffix.hpp -------------------------------------------------------------------------------- /external/include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/config/user.hpp -------------------------------------------------------------------------------- /external/include/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /external/include/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /external/include/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/throw_exception.hpp -------------------------------------------------------------------------------- /external/include/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /external/include/conncpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp.hpp -------------------------------------------------------------------------------- /external/include/conncpp/CArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/CArray.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Connection.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Driver.hpp -------------------------------------------------------------------------------- /external/include/conncpp/DriverManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/DriverManager.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Exception.hpp -------------------------------------------------------------------------------- /external/include/conncpp/ResultSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/ResultSet.hpp -------------------------------------------------------------------------------- /external/include/conncpp/SQLString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/SQLString.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Savepoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Savepoint.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Statement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Statement.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Types.hpp -------------------------------------------------------------------------------- /external/include/conncpp/Warning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/Warning.hpp -------------------------------------------------------------------------------- /external/include/conncpp/buildconf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/buildconf.hpp -------------------------------------------------------------------------------- /external/include/conncpp/compat/Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/compat/Array.hpp -------------------------------------------------------------------------------- /external/include/conncpp/compat/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/compat/Object.hpp -------------------------------------------------------------------------------- /external/include/conncpp/compat/Struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/compat/Struct.hpp -------------------------------------------------------------------------------- /external/include/conncpp/jdbccompat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/conncpp/jdbccompat.hpp -------------------------------------------------------------------------------- /external/include/enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/enet.h -------------------------------------------------------------------------------- /external/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/common.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /external/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /external/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /external/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/exponential.hpp -------------------------------------------------------------------------------- /external/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /external/include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /external/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /external/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /external/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/fwd.hpp -------------------------------------------------------------------------------- /external/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/geometric.hpp -------------------------------------------------------------------------------- /external/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/glm.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /external/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /external/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /external/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /external/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /external/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /external/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/integer.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /external/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /external/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/matrix.hpp -------------------------------------------------------------------------------- /external/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/packing.hpp -------------------------------------------------------------------------------- /external/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/common.h -------------------------------------------------------------------------------- /external/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /external/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /external/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/integer.h -------------------------------------------------------------------------------- /external/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /external/include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/neon.h -------------------------------------------------------------------------------- /external/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/packing.h -------------------------------------------------------------------------------- /external/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/simd/platform.h -------------------------------------------------------------------------------- /external/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /external/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/vec2.hpp -------------------------------------------------------------------------------- /external/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/vec3.hpp -------------------------------------------------------------------------------- /external/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/glm/vec4.hpp -------------------------------------------------------------------------------- /external/include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/json.hpp -------------------------------------------------------------------------------- /external/include/librg/header/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/header/entity.h -------------------------------------------------------------------------------- /external/include/librg/header/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/header/general.h -------------------------------------------------------------------------------- /external/include/librg/header/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/header/packing.h -------------------------------------------------------------------------------- /external/include/librg/header/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/header/query.h -------------------------------------------------------------------------------- /external/include/librg/header/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/header/types.h -------------------------------------------------------------------------------- /external/include/librg/librg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/librg.h -------------------------------------------------------------------------------- /external/include/librg/librg_hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/librg/librg_hedley.h -------------------------------------------------------------------------------- /external/include/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/lua/lauxlib.h -------------------------------------------------------------------------------- /external/include/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/lua/lua.h -------------------------------------------------------------------------------- /external/include/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/lua/lua.hpp -------------------------------------------------------------------------------- /external/include/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/lua/luaconf.h -------------------------------------------------------------------------------- /external/include/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/include/lua/lualib.h -------------------------------------------------------------------------------- /external/lib/debug/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/debug/assimp.lib -------------------------------------------------------------------------------- /external/lib/debug/librg_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/debug/librg_static.lib -------------------------------------------------------------------------------- /external/lib/debug/lua544_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/debug/lua544_static.lib -------------------------------------------------------------------------------- /external/lib/debug/mariadbcpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/debug/mariadbcpp.lib -------------------------------------------------------------------------------- /external/lib/debug/minhook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/debug/minhook.lib -------------------------------------------------------------------------------- /external/lib/release/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/release/assimp.lib -------------------------------------------------------------------------------- /external/lib/release/librg_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/release/librg_static.lib -------------------------------------------------------------------------------- /external/lib/release/lua544_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/release/lua544_static.lib -------------------------------------------------------------------------------- /external/lib/release/mariadbcpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/release/mariadbcpp.lib -------------------------------------------------------------------------------- /external/lib/release/minhook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/external/lib/release/minhook.lib -------------------------------------------------------------------------------- /globals/defs/general_purpose_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/general_purpose_macros.h -------------------------------------------------------------------------------- /globals/defs/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/glm.h -------------------------------------------------------------------------------- /globals/defs/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/json.h -------------------------------------------------------------------------------- /globals/defs/libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/libs.h -------------------------------------------------------------------------------- /globals/defs/rg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/rg_defs.h -------------------------------------------------------------------------------- /globals/defs/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/defs/standard.h -------------------------------------------------------------------------------- /globals/globals.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/globals.vcxitems -------------------------------------------------------------------------------- /globals/globals.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/globals.vcxitems.user -------------------------------------------------------------------------------- /globals/memory/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/memory/defs.h -------------------------------------------------------------------------------- /globals/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/globals/memory/memory.h -------------------------------------------------------------------------------- /hde/hde.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/hde/hde.vcxitems -------------------------------------------------------------------------------- /hde/hde32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/hde/hde32.cpp -------------------------------------------------------------------------------- /hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/hde/hde32.h -------------------------------------------------------------------------------- /hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/hde/pstdint.h -------------------------------------------------------------------------------- /hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/hde/table32.h -------------------------------------------------------------------------------- /launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/App.config -------------------------------------------------------------------------------- /launcher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/App.xaml -------------------------------------------------------------------------------- /launcher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/App.xaml.cs -------------------------------------------------------------------------------- /launcher/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/AssemblyInfo.cs -------------------------------------------------------------------------------- /launcher/Assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Assets/cover.png -------------------------------------------------------------------------------- /launcher/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Assets/icon.ico -------------------------------------------------------------------------------- /launcher/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Assets/icon.png -------------------------------------------------------------------------------- /launcher/Models/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/AppConfig.cs -------------------------------------------------------------------------------- /launcher/Models/DashboardNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/DashboardNew.cs -------------------------------------------------------------------------------- /launcher/Models/DataColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/DataColor.cs -------------------------------------------------------------------------------- /launcher/Models/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/GameSettings.cs -------------------------------------------------------------------------------- /launcher/Models/GameSettingsEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/GameSettingsEnums.cs -------------------------------------------------------------------------------- /launcher/Models/LauncherSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/LauncherSettings.cs -------------------------------------------------------------------------------- /launcher/Models/LauncherSettingsEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/LauncherSettingsEnums.cs -------------------------------------------------------------------------------- /launcher/Models/PlayerInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/PlayerInformation.cs -------------------------------------------------------------------------------- /launcher/Models/ServerInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Models/ServerInformation.cs -------------------------------------------------------------------------------- /launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /launcher/Services/IRepositoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Services/IRepositoryService.cs -------------------------------------------------------------------------------- /launcher/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Services/PageService.cs -------------------------------------------------------------------------------- /launcher/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /launcher/Views/Container.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Views/Container.xaml -------------------------------------------------------------------------------- /launcher/Views/Container.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Views/Container.xaml.cs -------------------------------------------------------------------------------- /launcher/Views/Pages/DashboardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Views/Pages/DashboardPage.xaml -------------------------------------------------------------------------------- /launcher/Views/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/Views/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /launcher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/app.manifest -------------------------------------------------------------------------------- /launcher/launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/launcher.csproj -------------------------------------------------------------------------------- /launcher/launcher.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/launcher/launcher.csproj.user -------------------------------------------------------------------------------- /launcher/obj/Release/net6.0-windows/win-x64/launcher.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loader/code/defs/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/defs/standard.h -------------------------------------------------------------------------------- /loader/code/ini/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/ini/INIReader.cpp -------------------------------------------------------------------------------- /loader/code/ini/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/ini/INIReader.h -------------------------------------------------------------------------------- /loader/code/ini/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/ini/ini.c -------------------------------------------------------------------------------- /loader/code/ini/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/ini/ini.h -------------------------------------------------------------------------------- /loader/code/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/code/loader.cpp -------------------------------------------------------------------------------- /loader/loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/loader.vcxproj -------------------------------------------------------------------------------- /loader/loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/loader.vcxproj.filters -------------------------------------------------------------------------------- /loader/loader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/loader/loader.vcxproj.user -------------------------------------------------------------------------------- /masterserver/code/base/base.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /masterserver/code/base/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/base/base.h -------------------------------------------------------------------------------- /masterserver/code/client/ms_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/client/ms_client.cpp -------------------------------------------------------------------------------- /masterserver/code/client/ms_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/client/ms_client.h -------------------------------------------------------------------------------- /masterserver/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/main.cpp -------------------------------------------------------------------------------- /masterserver/code/ms/ms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/ms/ms.cpp -------------------------------------------------------------------------------- /masterserver/code/ms/ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/ms/ms.h -------------------------------------------------------------------------------- /masterserver/code/server/ms_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/server/ms_server.cpp -------------------------------------------------------------------------------- /masterserver/code/server/ms_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/code/server/ms_server.h -------------------------------------------------------------------------------- /masterserver/masterserver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/masterserver.vcxproj -------------------------------------------------------------------------------- /masterserver/masterserver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/masterserver/masterserver.vcxproj.user -------------------------------------------------------------------------------- /misc/design/resources sync mechanism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/misc/design/resources sync mechanism.txt -------------------------------------------------------------------------------- /profiling/bug_ripper/bug_ripper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/bug_ripper/bug_ripper.cpp -------------------------------------------------------------------------------- /profiling/bug_ripper/bug_ripper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/bug_ripper/bug_ripper.h -------------------------------------------------------------------------------- /profiling/prof/prof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/prof/prof.cpp -------------------------------------------------------------------------------- /profiling/prof/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/prof/prof.h -------------------------------------------------------------------------------- /profiling/profiling.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/profiling.vcxitems -------------------------------------------------------------------------------- /profiling/profiling.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/profiling.vcxitems.user -------------------------------------------------------------------------------- /profiling/registry/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/registry/registry.cpp -------------------------------------------------------------------------------- /profiling/registry/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/profiling/registry/registry.h -------------------------------------------------------------------------------- /reversing/ce & reclass/JustCause.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/ce & reclass/JustCause.CT -------------------------------------------------------------------------------- /reversing/docs/JC/.obsidian/workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/.obsidian/workspace -------------------------------------------------------------------------------- /reversing/docs/JC/TODO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reversing/docs/JC/class hierarchy.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/class hierarchy.drawio -------------------------------------------------------------------------------- /reversing/docs/JC/class_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/class_functions.md -------------------------------------------------------------------------------- /reversing/docs/JC/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/classes.md -------------------------------------------------------------------------------- /reversing/docs/JC/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/functions.md -------------------------------------------------------------------------------- /reversing/docs/JC/game/archives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/archives.cpp -------------------------------------------------------------------------------- /reversing/docs/JC/game/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/archives.h -------------------------------------------------------------------------------- /reversing/docs/JC/game/assets_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/assets_list.txt -------------------------------------------------------------------------------- /reversing/docs/JC/game/file_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/file_dump.txt -------------------------------------------------------------------------------- /reversing/docs/JC/game/hash to name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/hash to name.cpp -------------------------------------------------------------------------------- /reversing/docs/JC/game/hash_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/hash_dump.txt -------------------------------------------------------------------------------- /reversing/docs/JC/game/string_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/game/string_dump.txt -------------------------------------------------------------------------------- /reversing/docs/JC/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/globals.md -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/10 October/14-10-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 659FF0 - MapSet::Find 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/10 October/17-10-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 60C1C0 - WeaponBelt::RemoveAmmoByBulletType 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/6 June/07-06-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 45C650 - FloatToInt16 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/6 June/21-06-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 58FC80 - Character::Update 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/7 July/21-07-2022.md: -------------------------------------------------------------------------------- 1 | 2 | ```cpp 3 | // Functions 4 | 5 | 4038A0 - Game::Free 6 | 7 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/7 July/25-07-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 59FD20 - Character::ProcessWeaponFiring 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/7 July/29-07-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 5A34A0 - Character::ForceLaunch 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/7 July/30-07-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 5A3650 - Character::CheckForceLaunch 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/7 July/31-07-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 7A2020 - DamageableObject::SetTransform 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/tony_daily/2022/8 August/26-08-2022.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | // Functions 3 | 4 | 61E780 - Weapon::UpdateGripTransform 5 | 6 | ``` -------------------------------------------------------------------------------- /reversing/docs/JC/vacations logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/vacations logs.txt -------------------------------------------------------------------------------- /reversing/docs/JC/vtables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/docs/JC/vtables.md -------------------------------------------------------------------------------- /reversing/dumps/0x304c5a9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/dumps/0x304c5a9.xml -------------------------------------------------------------------------------- /reversing/dumps/0x676244d9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/dumps/0x676244d9.xml -------------------------------------------------------------------------------- /reversing/dumps/JCSaves.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/dumps/JCSaves.sav -------------------------------------------------------------------------------- /reversing/info/dbg/for npc variant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/for npc variant.txt -------------------------------------------------------------------------------- /reversing/info/dbg/lights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/lights.txt -------------------------------------------------------------------------------- /reversing/info/dbg/map walking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/map walking.txt -------------------------------------------------------------------------------- /reversing/info/dbg/skeleton debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/skeleton debug.txt -------------------------------------------------------------------------------- /reversing/info/dbg/string_dumps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/string_dumps.txt -------------------------------------------------------------------------------- /reversing/info/dbg/vtable dumper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/vtable dumper.txt -------------------------------------------------------------------------------- /reversing/info/dbg/vtable hooker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/dbg/vtable hooker.txt -------------------------------------------------------------------------------- /reversing/info/ida/ida_base_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/ida/ida_base_structs.h -------------------------------------------------------------------------------- /reversing/info/ida/ida_base_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/ida/ida_base_structs.hpp -------------------------------------------------------------------------------- /reversing/info/ida/ida_game_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/ida/ida_game_structs.h -------------------------------------------------------------------------------- /reversing/info/ida/ida_game_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/reversing/info/ida/ida_game_structs.hpp -------------------------------------------------------------------------------- /rg/rg.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/rg/rg.vcxitems -------------------------------------------------------------------------------- /rg/rg.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/rg/rg.vcxitems.user -------------------------------------------------------------------------------- /rg/rg/rg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/rg/rg/rg.cpp -------------------------------------------------------------------------------- /rg/rg/rg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/rg/rg/rg.h -------------------------------------------------------------------------------- /scripting/luas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/luas.h -------------------------------------------------------------------------------- /scripting/resource/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/resource/resource.cpp -------------------------------------------------------------------------------- /scripting/resource/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/resource/resource.h -------------------------------------------------------------------------------- /scripting/resource_sys/resource_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/resource_sys/resource_system.h -------------------------------------------------------------------------------- /scripting/script/lua_ctx/script_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/script/lua_ctx/script_events.h -------------------------------------------------------------------------------- /scripting/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/script/script.cpp -------------------------------------------------------------------------------- /scripting/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/script/script.h -------------------------------------------------------------------------------- /scripting/script/util/script_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/script/util/script_timer.cpp -------------------------------------------------------------------------------- /scripting/script/util/script_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/script/util/script_timer.h -------------------------------------------------------------------------------- /scripting/scripting.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/scripting.vcxitems -------------------------------------------------------------------------------- /scripting/scripting.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/scripting/scripting.vcxitems.user -------------------------------------------------------------------------------- /server/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/main.cpp -------------------------------------------------------------------------------- /server/code/mp/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/config.cpp -------------------------------------------------------------------------------- /server/code/mp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/config.h -------------------------------------------------------------------------------- /server/code/mp/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/net.cpp -------------------------------------------------------------------------------- /server/code/mp/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/net.h -------------------------------------------------------------------------------- /server/code/mp/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/settings.cpp -------------------------------------------------------------------------------- /server/code/mp/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/settings.h -------------------------------------------------------------------------------- /server/code/mp/users_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/users_db.cpp -------------------------------------------------------------------------------- /server/code/mp/users_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/code/mp/users_db.h -------------------------------------------------------------------------------- /server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/server.vcxproj -------------------------------------------------------------------------------- /server/server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/server.vcxproj.filters -------------------------------------------------------------------------------- /server/server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/server/server.vcxproj.user -------------------------------------------------------------------------------- /shared/game/shared/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/shared/character.h -------------------------------------------------------------------------------- /shared/game/shared/npc_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/shared/npc_variant.h -------------------------------------------------------------------------------- /shared/game/shared/stances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/shared/stances.h -------------------------------------------------------------------------------- /shared/game/shared/vehicle_seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/shared/vehicle_seat.h -------------------------------------------------------------------------------- /shared/game/transform/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/transform/transform.cpp -------------------------------------------------------------------------------- /shared/game/transform/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/game/transform/transform.h -------------------------------------------------------------------------------- /shared/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/math/math.h -------------------------------------------------------------------------------- /shared/net/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/channels.h -------------------------------------------------------------------------------- /shared/net/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/interface.cpp -------------------------------------------------------------------------------- /shared/net/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/interface.h -------------------------------------------------------------------------------- /shared/net/obj_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/obj_serializer.cpp -------------------------------------------------------------------------------- /shared/net/obj_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/obj_serializer.h -------------------------------------------------------------------------------- /shared/net/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/packet.h -------------------------------------------------------------------------------- /shared/net/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/net/packets.h -------------------------------------------------------------------------------- /shared/shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared.vcxitems -------------------------------------------------------------------------------- /shared/shared.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared.vcxitems.user -------------------------------------------------------------------------------- /shared/shared_mp/net_handlers/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/net_handlers/all.h -------------------------------------------------------------------------------- /shared/shared_mp/object_lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/object_lists.cpp -------------------------------------------------------------------------------- /shared/shared_mp/object_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/object_lists.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/all.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/blip_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/blip_net.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/blip_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/blip_net.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/grenade_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/grenade_net.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/grenade_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/grenade_net.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/net_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/net_object.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/net_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/net_object.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/pickup_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/pickup_net.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/pickup_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/pickup_net.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/player.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/player.h -------------------------------------------------------------------------------- /shared/shared_mp/objs/vehicle_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/vehicle_net.cpp -------------------------------------------------------------------------------- /shared/shared_mp/objs/vehicle_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/shared/shared_mp/objs/vehicle_net.h -------------------------------------------------------------------------------- /sql/sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/sql/sql.cpp -------------------------------------------------------------------------------- /sql/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/sql/sql.h -------------------------------------------------------------------------------- /sql/sql.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/sql/sql.vcxitems -------------------------------------------------------------------------------- /sql/sql.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/sql/sql.vcxitems.user -------------------------------------------------------------------------------- /tcp/netcp_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/netcp_interface.cpp -------------------------------------------------------------------------------- /tcp/netcp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/netcp_interface.h -------------------------------------------------------------------------------- /tcp/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/packets.h -------------------------------------------------------------------------------- /tcp/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/ports.h -------------------------------------------------------------------------------- /tcp/tcp.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/tcp.vcxitems -------------------------------------------------------------------------------- /tcp/tcp.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp/tcp.vcxitems.user -------------------------------------------------------------------------------- /tcp_client/tcp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_client/tcp_client.cpp -------------------------------------------------------------------------------- /tcp_client/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_client/tcp_client.h -------------------------------------------------------------------------------- /tcp_client/tcp_client.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_client/tcp_client.vcxitems -------------------------------------------------------------------------------- /tcp_client/tcp_client.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_client/tcp_client.vcxitems.user -------------------------------------------------------------------------------- /tcp_server/tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_server/tcp_server.cpp -------------------------------------------------------------------------------- /tcp_server/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_server/tcp_server.h -------------------------------------------------------------------------------- /tcp_server/tcp_server.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_server/tcp_server.vcxitems -------------------------------------------------------------------------------- /tcp_server/tcp_server.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/tcp_server/tcp_server.vcxitems.user -------------------------------------------------------------------------------- /thread_system/thread_system.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/thread_system/thread_system.vcxitems -------------------------------------------------------------------------------- /thread_system/thread_system/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/thread_system/thread_system/event.h -------------------------------------------------------------------------------- /thread_system/thread_system/stl/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/thread_system/thread_system/stl/queue.h -------------------------------------------------------------------------------- /thread_system/thread_system/stl/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/thread_system/thread_system/stl/vector.h -------------------------------------------------------------------------------- /utils/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/crypto/sha512.cpp -------------------------------------------------------------------------------- /utils/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/crypto/sha512.h -------------------------------------------------------------------------------- /utils/serializer/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/serializer/serializer.cpp -------------------------------------------------------------------------------- /utils/serializer/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/serializer/serializer.h -------------------------------------------------------------------------------- /utils/timer/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/timer/timer.cpp -------------------------------------------------------------------------------- /utils/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/timer/timer.h -------------------------------------------------------------------------------- /utils/utils.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/utils.vcxitems -------------------------------------------------------------------------------- /utils/utils.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/utils.vcxitems.user -------------------------------------------------------------------------------- /utils/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/utils/utils.cpp -------------------------------------------------------------------------------- /utils/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyx97/Just-Cause-1-Multiplayer/HEAD/utils/utils/utils.h --------------------------------------------------------------------------------