├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── VersionTools.ts │ ├── build.yml │ └── pr_check.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── AmethystAPI ├── include │ ├── Json.hpp │ ├── entt │ │ ├── config │ │ │ ├── config.h │ │ │ ├── macro.h │ │ │ └── version.h │ │ ├── container │ │ │ ├── dense_map.hpp │ │ │ ├── dense_set.hpp │ │ │ ├── fwd.hpp │ │ │ └── table.hpp │ │ ├── core │ │ │ ├── algorithm.hpp │ │ │ ├── any.hpp │ │ │ ├── attribute.h │ │ │ ├── bit.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── enum.hpp │ │ │ ├── family.hpp │ │ │ ├── fwd.hpp │ │ │ ├── hashed_string.hpp │ │ │ ├── ident.hpp │ │ │ ├── iterator.hpp │ │ │ ├── memory.hpp │ │ │ ├── monostate.hpp │ │ │ ├── ranges.hpp │ │ │ ├── tuple.hpp │ │ │ ├── type_info.hpp │ │ │ ├── type_traits.hpp │ │ │ └── utility.hpp │ │ ├── entity │ │ │ ├── component.hpp │ │ │ ├── entity.hpp │ │ │ ├── fwd.hpp │ │ │ ├── group.hpp │ │ │ ├── handle.hpp │ │ │ ├── helper.hpp │ │ │ ├── mixin.hpp │ │ │ ├── observer.hpp │ │ │ ├── organizer.hpp │ │ │ ├── ranges.hpp │ │ │ ├── registry.hpp │ │ │ ├── runtime_view.hpp │ │ │ ├── snapshot.hpp │ │ │ ├── sparse_set.hpp │ │ │ ├── storage.hpp │ │ │ └── view.hpp │ │ ├── entt.hpp │ │ ├── fwd.hpp │ │ ├── graph │ │ │ ├── adjacency_matrix.hpp │ │ │ ├── dot.hpp │ │ │ ├── flow.hpp │ │ │ └── fwd.hpp │ │ ├── locator │ │ │ └── locator.hpp │ │ ├── meta │ │ │ ├── adl_pointer.hpp │ │ │ ├── container.hpp │ │ │ ├── context.hpp │ │ │ ├── factory.hpp │ │ │ ├── fwd.hpp │ │ │ ├── meta.hpp │ │ │ ├── node.hpp │ │ │ ├── pointer.hpp │ │ │ ├── policy.hpp │ │ │ ├── range.hpp │ │ │ ├── resolve.hpp │ │ │ ├── template.hpp │ │ │ ├── type_traits.hpp │ │ │ └── utility.hpp │ │ ├── poly │ │ │ ├── fwd.hpp │ │ │ └── poly.hpp │ │ ├── process │ │ │ ├── fwd.hpp │ │ │ ├── process.hpp │ │ │ └── scheduler.hpp │ │ ├── resource │ │ │ ├── cache.hpp │ │ │ ├── fwd.hpp │ │ │ ├── loader.hpp │ │ │ └── resource.hpp │ │ └── signal │ │ │ ├── delegate.hpp │ │ │ ├── dispatcher.hpp │ │ │ ├── emitter.hpp │ │ │ ├── fwd.hpp │ │ │ └── sigh.hpp │ ├── expected_lite │ │ └── expected.hpp │ ├── 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_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── 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_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_precision.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_precision.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_precision.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_precision.hpp │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_precision.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_precision.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_precision.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_precision.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 │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── gsl │ │ ├── gsl │ │ ├── gsl_algorithm │ │ ├── gsl_assert │ │ ├── gsl_byte │ │ ├── gsl_util │ │ ├── multi_span │ │ ├── pointers │ │ ├── span │ │ ├── span_ext │ │ └── string_span │ ├── json │ │ ├── LICENSE │ │ ├── autolink.h │ │ ├── config.h │ │ ├── features.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── json_batchallocator.h │ │ ├── json_reader.cpp │ │ ├── json_tool.h │ │ ├── json_value.cpp │ │ ├── json_valueiterator.inl │ │ ├── json_writer.cpp │ │ ├── reader.h │ │ ├── value.h │ │ └── writer.h │ └── neargye │ │ ├── LICENSE.txt │ │ └── semver.hpp ├── mod_build.lua ├── src │ ├── amethyst-deps │ │ ├── Zydis.c │ │ ├── Zydis.h │ │ ├── safetyhook.cpp │ │ └── safetyhook.hpp │ ├── amethyst │ │ ├── Config.cpp │ │ ├── Config.hpp │ │ ├── Formatting.hpp │ │ ├── Imports.hpp │ │ ├── Log.cpp │ │ ├── Log.hpp │ │ ├── Memory.cpp │ │ ├── Memory.hpp │ │ ├── Utility.cpp │ │ ├── Utility.hpp │ │ ├── game │ │ │ ├── CreativeItemRegistry.cpp │ │ │ ├── CreativeItemRegistry.hpp │ │ │ ├── capabilities │ │ │ │ ├── BaseCapability.hpp │ │ │ │ ├── BlockCapability.hpp │ │ │ │ ├── Capabilities.cpp │ │ │ │ ├── Capabilities.hpp │ │ │ │ ├── CapabilityRegistry.hpp │ │ │ │ └── IItemHandler.hpp │ │ │ └── client │ │ │ │ └── ICustomUIRendererRegistry.hpp │ │ ├── runtime │ │ │ ├── AmethystContext.cpp │ │ │ ├── AmethystContext.hpp │ │ │ ├── EnumAllocator.hpp │ │ │ ├── HookManager.cpp │ │ │ ├── HookManager.hpp │ │ │ ├── ModContext.cpp │ │ │ ├── ModContext.hpp │ │ │ ├── ctx │ │ │ │ ├── ClientContext.hpp │ │ │ │ ├── ServerContext.hpp │ │ │ │ ├── SharedContext.cpp │ │ │ │ └── SharedContext.hpp │ │ │ ├── events │ │ │ │ ├── BlockEvents.hpp │ │ │ │ ├── EventBus.hpp │ │ │ │ ├── GameEvents.hpp │ │ │ │ ├── InputEvents.hpp │ │ │ │ ├── ModEvents.hpp │ │ │ │ ├── RegisterCapabilitiesEvent.hpp │ │ │ │ ├── RegisterEvents.hpp │ │ │ │ ├── RenderingEvents.hpp │ │ │ │ └── UiEvents.hpp │ │ │ ├── importing │ │ │ │ ├── Importer.cpp │ │ │ │ ├── Importer.hpp │ │ │ │ ├── data │ │ │ │ │ ├── AbstractHeader.cpp │ │ │ │ │ ├── AbstractHeader.hpp │ │ │ │ │ ├── AbstractSymbol.cpp │ │ │ │ │ ├── AbstractSymbol.hpp │ │ │ │ │ ├── CanonicalHeader.cpp │ │ │ │ │ ├── CanonicalHeader.hpp │ │ │ │ │ ├── CanonicalSymbol.cpp │ │ │ │ │ ├── CanonicalSymbol.hpp │ │ │ │ │ ├── HeaderFactory.cpp │ │ │ │ │ ├── HeaderFactory.hpp │ │ │ │ │ ├── HeaderType.cpp │ │ │ │ │ ├── HeaderType.hpp │ │ │ │ │ ├── SymbolFactory.cpp │ │ │ │ │ ├── SymbolFactory.hpp │ │ │ │ │ ├── SymbolInfo.cpp │ │ │ │ │ ├── SymbolInfo.hpp │ │ │ │ │ ├── SymbolType.cpp │ │ │ │ │ ├── SymbolType.hpp │ │ │ │ │ └── pe32+ │ │ │ │ │ │ ├── AbstractPEImportedSymbol.cpp │ │ │ │ │ │ ├── AbstractPEImportedSymbol.hpp │ │ │ │ │ │ ├── AbstractPEImporterHeader.cpp │ │ │ │ │ │ ├── AbstractPEImporterHeader.hpp │ │ │ │ │ │ ├── PECanonicalDataSymbol.cpp │ │ │ │ │ │ ├── PECanonicalDataSymbol.hpp │ │ │ │ │ │ ├── PECanonicalFunctionSymbol.cpp │ │ │ │ │ │ ├── PECanonicalFunctionSymbol.hpp │ │ │ │ │ │ ├── PECanonicalHeader.cpp │ │ │ │ │ │ ├── PECanonicalHeader.hpp │ │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── PEDataSymbol.cpp │ │ │ │ │ │ ├── PEDataSymbol.hpp │ │ │ │ │ │ ├── PEFunctionSymbol.cpp │ │ │ │ │ │ ├── PEFunctionSymbol.hpp │ │ │ │ │ │ ├── PEImporterHeader.cpp │ │ │ │ │ │ └── PEImporterHeader.hpp │ │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── PEDataSymbol.cpp │ │ │ │ │ │ └── PEDataSymbol.hpp │ │ │ │ └── pe32+ │ │ │ │ │ ├── PEImporter.cpp │ │ │ │ │ └── PEImporter.hpp │ │ │ ├── input │ │ │ │ ├── InputAction.cpp │ │ │ │ ├── InputAction.hpp │ │ │ │ ├── InputManager.cpp │ │ │ │ └── InputManager.hpp │ │ │ ├── mc │ │ │ │ ├── MinecraftPackageInfo.cpp │ │ │ │ └── MinecraftPackageInfo.hpp │ │ │ ├── mod │ │ │ │ ├── Mod.cpp │ │ │ │ ├── Mod.hpp │ │ │ │ ├── ModDependency.cpp │ │ │ │ ├── ModDependency.hpp │ │ │ │ ├── ModError.hpp │ │ │ │ ├── ModGraph.cpp │ │ │ │ ├── ModGraph.hpp │ │ │ │ ├── ModInfo.cpp │ │ │ │ ├── ModInfo.hpp │ │ │ │ ├── ModLoader.cpp │ │ │ │ ├── ModLoader.hpp │ │ │ │ ├── ModRepository.cpp │ │ │ │ ├── ModRepository.hpp │ │ │ │ ├── ModuleHandle.cpp │ │ │ │ └── ModuleHandle.hpp │ │ │ ├── networking │ │ │ │ ├── CustomPacket.hpp │ │ │ │ ├── NetworkManager.cpp │ │ │ │ └── NetworkManager.hpp │ │ │ ├── patchManager │ │ │ │ ├── PatchManager.cpp │ │ │ │ └── PatchManager.hpp │ │ │ ├── platform │ │ │ │ ├── Platform.cpp │ │ │ │ └── Platform.hpp │ │ │ ├── resource │ │ │ │ ├── PackManager.cpp │ │ │ │ └── PackManager.hpp │ │ │ └── utility │ │ │ │ ├── InlineHook.hpp │ │ │ │ ├── Mixin.cpp │ │ │ │ ├── Mixin.hpp │ │ │ │ ├── SimpleBinaryReader.hpp │ │ │ │ └── Version.hpp │ │ └── ui │ │ │ ├── NinesliceHelper.cpp │ │ │ └── NinesliceHelper.hpp │ └── mc │ │ ├── src-client │ │ └── common │ │ │ ├── client │ │ │ ├── game │ │ │ │ ├── ClientInstance.cpp │ │ │ │ ├── ClientInstance.hpp │ │ │ │ ├── IClientInstance.hpp │ │ │ │ ├── MinecraftGame.cpp │ │ │ │ └── MinecraftGame.hpp │ │ │ ├── gui │ │ │ │ ├── ScreenView.hpp │ │ │ │ ├── UIResolvedDef.hpp │ │ │ │ ├── controls │ │ │ │ │ ├── CustomRenderComponent.cpp │ │ │ │ │ ├── CustomRenderComponent.hpp │ │ │ │ │ ├── RenderableComponent.hpp │ │ │ │ │ ├── SliderComponent.hpp │ │ │ │ │ ├── TextComponent.hpp │ │ │ │ │ ├── ToggleComponent.hpp │ │ │ │ │ ├── UIComponent.cpp │ │ │ │ │ ├── UIComponent.hpp │ │ │ │ │ ├── UIControlFactory.hpp │ │ │ │ │ ├── UIMeasureStrategy.hpp │ │ │ │ │ ├── UIPropertyBag.cpp │ │ │ │ │ ├── UIPropertyBag.hpp │ │ │ │ │ └── renderers │ │ │ │ │ │ ├── HoverRenderer.hpp │ │ │ │ │ │ ├── HoverTextRenderer.hpp │ │ │ │ │ │ ├── MinecraftUICustomRenderer.hpp │ │ │ │ │ │ └── UICustomRenderer.hpp │ │ │ │ ├── gui │ │ │ │ │ ├── FontHandle.hpp │ │ │ │ │ ├── GuiData.cpp │ │ │ │ │ ├── GuiData.hpp │ │ │ │ │ ├── UIControl.cpp │ │ │ │ │ ├── UIControl.hpp │ │ │ │ │ └── VisualTree.hpp │ │ │ │ └── screens │ │ │ │ │ ├── AbstractScene.hpp │ │ │ │ │ ├── BaseScreen.hpp │ │ │ │ │ ├── InGamePlayScreen.hpp │ │ │ │ │ ├── SceneCreationUtils.hpp │ │ │ │ │ ├── SceneFactory.hpp │ │ │ │ │ ├── SceneStack.hpp │ │ │ │ │ ├── ScreenController.hpp │ │ │ │ │ ├── ScreenEvent.hpp │ │ │ │ │ ├── UIScene.hpp │ │ │ │ │ ├── UIScreenContext.hpp │ │ │ │ │ ├── controllers │ │ │ │ │ ├── BlockContainerScreenController.hpp │ │ │ │ │ ├── ChestScreenController.hpp │ │ │ │ │ ├── ClientInstanceScreenController.hpp │ │ │ │ │ ├── ContainerScreenController.cpp │ │ │ │ │ ├── ContainerScreenController.hpp │ │ │ │ │ ├── CraftingScreenController.hpp │ │ │ │ │ ├── FurnaceScreenController.hpp │ │ │ │ │ ├── HudScreenController.hpp │ │ │ │ │ ├── MinecraftScreenController.hpp │ │ │ │ │ └── StartMenuScreenController.hpp │ │ │ │ │ └── models │ │ │ │ │ ├── ClientInstanceScreenModel.hpp │ │ │ │ │ └── MinecraftScreenModel.hpp │ │ │ ├── input │ │ │ │ ├── ClientInputHandler.hpp │ │ │ │ ├── ClientInputMappingFactory.hpp │ │ │ │ ├── Keymapping.cpp │ │ │ │ ├── Keymapping.hpp │ │ │ │ ├── MinecraftInputHandler.hpp │ │ │ │ ├── RemappingLayout.cpp │ │ │ │ ├── RemappingLayout.hpp │ │ │ │ ├── VanillaClientInputMappingFactory.cpp │ │ │ │ └── VanillaClientInputMappingFactory.hpp │ │ │ ├── model │ │ │ │ ├── Geometry.cpp │ │ │ │ ├── Geometry.hpp │ │ │ │ ├── GeometryGroup.hpp │ │ │ │ ├── GeometryInfo.hpp │ │ │ │ └── models │ │ │ │ │ └── ChestModel.hpp │ │ │ ├── network │ │ │ │ └── ClientNetworkHandler.hpp │ │ │ ├── options │ │ │ │ ├── BaseOptions.hpp │ │ │ │ └── Options.hpp │ │ │ ├── particlesystem │ │ │ │ └── particle │ │ │ │ │ └── ParticleSystemEngine.hpp │ │ │ ├── player │ │ │ │ └── LocalPlayer.hpp │ │ │ ├── renderer │ │ │ │ ├── ActorShaderManager.asm │ │ │ │ ├── ActorShaderManager.cpp │ │ │ │ ├── ActorShaderManager.hpp │ │ │ │ ├── BaseActorRenderContext.cpp │ │ │ │ ├── BaseActorRenderContext.hpp │ │ │ │ ├── BaseActorRenderer.asm │ │ │ │ ├── BaseActorRenderer.hpp │ │ │ │ ├── ImageInfo.hpp │ │ │ │ ├── MinecraftGameplayGraphicsResources.hpp │ │ │ │ ├── NinesliceInfo.hpp │ │ │ │ ├── RenderMaterialGroup.hpp │ │ │ │ ├── Tessellator.cpp │ │ │ │ ├── Tessellator.hpp │ │ │ │ ├── TextureGroup.cpp │ │ │ │ ├── TextureGroup.hpp │ │ │ │ ├── TexturePtr.hpp │ │ │ │ ├── actor │ │ │ │ │ ├── ItemRenderer.cpp │ │ │ │ │ └── ItemRenderer.hpp │ │ │ │ ├── block │ │ │ │ │ ├── BlockGraphics.cpp │ │ │ │ │ ├── BlockGraphics.hpp │ │ │ │ │ ├── BlockTessellator.cpp │ │ │ │ │ └── BlockTessellator.hpp │ │ │ │ ├── blockActor │ │ │ │ │ ├── ActorBlockRenderer.hpp │ │ │ │ │ ├── BlockActorRenderer.asm │ │ │ │ │ ├── BlockActorRenderer.hpp │ │ │ │ │ ├── BlockActorRendererDispatcher.hpp │ │ │ │ │ └── ChestRenderer.hpp │ │ │ │ ├── chunks │ │ │ │ │ ├── RenderChunkCoordinator.cpp │ │ │ │ │ └── RenderChunkCoordinator.hpp │ │ │ │ ├── game │ │ │ │ │ ├── ItemContextFlags.hpp │ │ │ │ │ ├── ItemInHandRenderer.hpp │ │ │ │ │ ├── LevelRenderer.hpp │ │ │ │ │ └── LevelRendererPlayer.hpp │ │ │ │ ├── helpers │ │ │ │ │ ├── MeshHelpers.cpp │ │ │ │ │ └── MeshHelpers.hpp │ │ │ │ ├── screen │ │ │ │ │ ├── MinecraftUIMeasureStrategy.hpp │ │ │ │ │ ├── MinecraftUIRenderContext.cpp │ │ │ │ │ ├── MinecraftUIRenderContext.hpp │ │ │ │ │ └── ScreenContext.hpp │ │ │ │ └── texture │ │ │ │ │ ├── BaseLightTextureImageBuilder.hpp │ │ │ │ │ ├── IsotropicFaceData.hpp │ │ │ │ │ ├── TextureAtlasItem.hpp │ │ │ │ │ └── TextureUVCoordinateSet.hpp │ │ │ ├── services │ │ │ │ └── download │ │ │ │ │ └── IDlcBatcher.hpp │ │ │ ├── social │ │ │ │ ├── GameConnectionInfo.hpp │ │ │ │ ├── MultiplayerGameinfo.hpp │ │ │ │ └── ToastManager.hpp │ │ │ ├── util │ │ │ │ └── ScreenshotUtils.hpp │ │ │ └── world │ │ │ │ ├── LocalWorldStarter.cpp │ │ │ │ ├── LocalWorldStarter.hpp │ │ │ │ ├── System.hpp │ │ │ │ ├── WorldCreationHelper.hpp │ │ │ │ ├── WorldID.hpp │ │ │ │ ├── WorldStorageHandler.hpp │ │ │ │ └── item │ │ │ │ ├── ItemIconManager.cpp │ │ │ │ └── ItemIconManager.hpp │ │ │ └── module │ │ │ └── GameModuleClient.hpp │ │ ├── src-deps │ │ ├── core │ │ │ ├── container │ │ │ │ ├── Blob.cpp │ │ │ │ ├── Blob.hpp │ │ │ │ └── IntrusiveList.hpp │ │ │ ├── debug │ │ │ │ └── log │ │ │ │ │ ├── ContentLog.hpp │ │ │ │ │ └── ContentLogTypes.hpp │ │ │ ├── file │ │ │ │ ├── Path.cpp │ │ │ │ └── Path.hpp │ │ │ ├── headerIncludes │ │ │ │ └── gsl_includes.hpp │ │ │ ├── image │ │ │ │ └── Image.hpp │ │ │ ├── math │ │ │ │ ├── Color.cpp │ │ │ │ ├── Color.hpp │ │ │ │ ├── DividedPos2d.h │ │ │ │ └── Math.hpp │ │ │ ├── platform │ │ │ │ └── BuildPlatform.hpp │ │ │ ├── resource │ │ │ │ ├── ContentIdentity.hpp │ │ │ │ ├── ResourceHelper.cpp │ │ │ │ ├── ResourceHelper.hpp │ │ │ │ └── ResourceUtil.hpp │ │ │ ├── semVer │ │ │ │ └── SemVersion.hpp │ │ │ ├── string │ │ │ │ ├── StringHash.cpp │ │ │ │ └── StringHash.hpp │ │ │ ├── threading │ │ │ │ ├── EnableQueueForMainThread.hpp │ │ │ │ ├── Mutex.hpp │ │ │ │ ├── SpinLock.cpp │ │ │ │ ├── SpinLock.hpp │ │ │ │ └── TaskGroup.hpp │ │ │ └── utility │ │ │ │ ├── AutomaticID.hpp │ │ │ │ ├── BinaryStream.cpp │ │ │ │ ├── BinaryStream.hpp │ │ │ │ ├── CallStack.hpp │ │ │ │ ├── ErrorInfo.hpp │ │ │ │ ├── NonOwnerPointer.hpp │ │ │ │ ├── PropertyBag.cpp │ │ │ │ ├── PropertyBag.hpp │ │ │ │ ├── Result.hpp │ │ │ │ ├── ServiceLocator.hpp │ │ │ │ ├── StringUtils.cpp │ │ │ │ ├── StringUtils.hpp │ │ │ │ ├── UUID.cpp │ │ │ │ ├── UUID.hpp │ │ │ │ ├── buffer_span.hpp │ │ │ │ ├── buffer_span_mut.hpp │ │ │ │ ├── optional_ref.hpp │ │ │ │ └── pubsub │ │ │ │ ├── Conector.hpp │ │ │ │ ├── Publisher.hpp │ │ │ │ ├── PublisherConfig.hpp │ │ │ │ ├── Subscription.hpp │ │ │ │ ├── SubscriptionContext.cpp │ │ │ │ ├── SubscriptionContext.hpp │ │ │ │ ├── ThreadModel.hpp │ │ │ │ └── detail │ │ │ │ ├── DispatchingPublisherBase.hpp │ │ │ │ ├── FastDispatcherPublisherBase.hpp │ │ │ │ ├── PublisherBase.hpp │ │ │ │ ├── SubscriptionBody.hpp │ │ │ │ └── ThreadingPublisherBase.hpp │ │ ├── coregraphics │ │ │ ├── ImageBuffer.hpp │ │ │ ├── ImageDescription.cpp │ │ │ ├── ImageDescription.hpp │ │ │ ├── TextureDescription.hpp │ │ │ ├── TextureSetLayerTypes.hpp │ │ │ └── enums │ │ │ │ ├── ColorSpace.hpp │ │ │ │ ├── ImageType.hpp │ │ │ │ └── TextureFormat.hpp │ │ ├── ecs │ │ │ ├── WeakEntityRef.hpp │ │ │ ├── gamerefs_entity │ │ │ │ ├── GameRefsEntity.hpp │ │ │ │ ├── IEntityRegistryOwner.hpp │ │ │ │ ├── OwnerStorageEntity.hpp │ │ │ │ ├── StackResultStorageEntity.hpp │ │ │ │ └── WeakStorageEntity.hpp │ │ │ └── systems │ │ │ │ └── IEntitySystems.hpp │ │ ├── expected.hpp │ │ ├── gamerefs │ │ │ ├── EnableGetWeakRef.hpp │ │ │ ├── GameRefs.hpp │ │ │ ├── OwnerPtr.hpp │ │ │ ├── StackRefResult.hpp │ │ │ ├── WeakRef.hpp │ │ │ └── gamerefs_shareptr │ │ │ │ ├── GameRefsSharePtr.hpp │ │ │ │ ├── OwnerStorageSharePtr.cpp │ │ │ │ ├── OwnerStorageSharePtr.hpp │ │ │ │ ├── StackResultStorageSharePtr.hpp │ │ │ │ └── WeakStorageSharePtr.hpp │ │ ├── input │ │ │ ├── InputHandler.cpp │ │ │ ├── InputHandler.hpp │ │ │ ├── InputMapping.hpp │ │ │ ├── InputMappingFactory.hpp │ │ │ ├── InputMode.hpp │ │ │ └── MouseDevice.hpp │ │ ├── minecraftrenderer │ │ │ ├── hal │ │ │ │ └── interface │ │ │ │ │ └── RenderContext.hpp │ │ │ └── renderer │ │ │ │ ├── ActorConstants.hpp │ │ │ │ ├── BedrockTexture.hpp │ │ │ │ ├── ConstantBufferConstantsBase.hpp │ │ │ │ ├── GlobalConstantBuffers.hpp │ │ │ │ ├── IsA.hpp │ │ │ │ ├── MaterialPtr.cpp │ │ │ │ ├── MaterialPtr.hpp │ │ │ │ ├── Mesh.hpp │ │ │ │ ├── MeshContext.hpp │ │ │ │ ├── MeshData.hpp │ │ │ │ ├── ResourceBase.hpp │ │ │ │ ├── TextureContainer.cpp │ │ │ │ ├── TextureContainer.hpp │ │ │ │ ├── TextureGroupBase.hpp │ │ │ │ └── shader │ │ │ │ ├── PrimitiveTypeFromEnumType.hpp │ │ │ │ ├── ShaderConstant.hpp │ │ │ │ ├── ShaderConstantBase.hpp │ │ │ │ ├── ShaderConstantFloat.hpp │ │ │ │ ├── ShaderConstantMatrix.hpp │ │ │ │ ├── ShaderConstantNull.hpp │ │ │ │ ├── ShaderConstantWithDataBase.hpp │ │ │ │ ├── ShaderConstantWithDataNull.hpp │ │ │ │ └── ShaderPrimitiveTypes.hpp │ │ ├── raknet │ │ │ ├── RakNetGUID.hpp │ │ │ └── raknet │ │ │ │ └── PacketPriority.hpp │ │ ├── renderer │ │ │ ├── Camera.hpp │ │ │ ├── Matrix.cpp │ │ │ ├── Matrix.hpp │ │ │ ├── MatrixStack.hpp │ │ │ ├── RenderMaterialGroupBase.hpp │ │ │ ├── ViewportInfo.hpp │ │ │ └── hal │ │ │ │ ├── SampleDescription.hpp │ │ │ │ └── TextureDescription.hpp │ │ └── shared_types │ │ │ └── legacy │ │ │ └── LevelSoundEvent.hpp │ │ ├── src-vanilla │ │ ├── vanilla_client │ │ │ └── common │ │ │ │ └── module │ │ │ │ └── VanillaGameModuleClient.hpp │ │ └── vanilla_shared │ │ │ └── common │ │ │ ├── resources │ │ │ └── VanillaInPackagePacks.hpp │ │ │ ├── server │ │ │ └── module │ │ │ │ └── VanillaGameModuleServer.hpp │ │ │ └── world │ │ │ └── level │ │ │ └── dimension │ │ │ ├── OverworldDimension.hpp │ │ │ └── VanillaDimensionFactory.hpp │ │ └── src │ │ └── common │ │ ├── ActorUniqueID.hpp │ │ ├── AppPlatformListener.hpp │ │ ├── CommonTypes.cpp │ │ ├── CommonTypes.hpp │ │ ├── GameVersion.hpp │ │ ├── Minecraft.cpp │ │ ├── Minecraft.hpp │ │ ├── SharedPtr.hpp │ │ ├── config │ │ └── ScreenCapabilities.hpp │ │ ├── dataloadhelper │ │ ├── DataLoadHelper.hpp │ │ ├── DataLoadHelperType.hpp │ │ └── DefaultDataLoadHelper.hpp │ │ ├── locale │ │ ├── I18n.cpp │ │ └── I18n.hpp │ │ ├── nbt │ │ ├── ByteArrayTag.cpp │ │ ├── ByteArrayTag.hpp │ │ ├── ByteTag.cpp │ │ ├── ByteTag.hpp │ │ ├── CompoundTag.cpp │ │ ├── CompoundTag.hpp │ │ ├── CompoundTagVariant.cpp │ │ ├── CompoundTagVariant.hpp │ │ ├── DoubleTag.cpp │ │ ├── DoubleTag.hpp │ │ ├── EndTag.hpp │ │ ├── FloatTag.cpp │ │ ├── FloatTag.hpp │ │ ├── Int64Tag.cpp │ │ ├── Int64Tag.hpp │ │ ├── IntArrayTag.cpp │ │ ├── IntArrayTag.hpp │ │ ├── IntTag.cpp │ │ ├── IntTag.hpp │ │ ├── ListTag.cpp │ │ ├── ListTag.hpp │ │ ├── NbtUtils.cpp │ │ ├── NbtUtils.hpp │ │ ├── ShortTag.cpp │ │ ├── ShortTag.hpp │ │ ├── StringTag.cpp │ │ ├── StringTag.hpp │ │ ├── Tag.cpp │ │ ├── Tag.hpp │ │ └── TagMemoryChunk.hpp │ │ ├── network │ │ ├── ClientOrServerNetworkSystemRef.hpp │ │ ├── DisconnectFailReason.hpp │ │ ├── IPacketHandlerDispatcher.hpp │ │ ├── LoopbackPacketSender.hpp │ │ ├── NetEventCallback.hpp │ │ ├── NetworkBlockPosition.hpp │ │ ├── NetworkIdentifier.hpp │ │ ├── NetworkPeer.hpp │ │ ├── PacketHandlerDispatcherInstance.hpp │ │ ├── PacketSender.hpp │ │ ├── ServerNetworkHandler.hpp │ │ └── packet │ │ │ ├── AddActorBasePacket.hpp │ │ │ ├── BlockActorDataPacket.hpp │ │ │ ├── ChangeDimensionPacket.hpp │ │ │ ├── CommandRequestPacket.hpp │ │ │ ├── ContainerOpenPacket.hpp │ │ │ ├── InventoryContentPacket.hpp │ │ │ ├── LoginPacket.hpp │ │ │ ├── Packet.cpp │ │ │ ├── Packet.hpp │ │ │ └── RequestNetworkSettingsPacket.hpp │ │ ├── options │ │ └── AppConfigs.hpp │ │ ├── resources │ │ ├── BaseGameVersion.hpp │ │ ├── CompositePackSource.hpp │ │ ├── DirectoryPackSource.hpp │ │ ├── InPackagePacks.hpp │ │ ├── PackSource.hpp │ │ ├── PackSourceFactory.hpp │ │ └── ResourcePackRepository.hpp │ │ ├── server │ │ ├── ServerInstance.hpp │ │ ├── ServerPlayer.hpp │ │ ├── SimulatedPlayer.cpp │ │ └── SimulatedPlayer.hpp │ │ ├── util │ │ ├── BiMap.cpp │ │ ├── BiMap.hpp │ │ ├── DataIO.hpp │ │ ├── Factory.hpp │ │ ├── Mirror.hpp │ │ ├── NewType.hpp │ │ ├── Rotation.hpp │ │ ├── Timer.cpp │ │ └── Timer.hpp │ │ └── world │ │ ├── Container.hpp │ │ ├── Difficulty.hpp │ │ ├── Direction.hpp │ │ ├── Facing.cpp │ │ ├── Facing.hpp │ │ ├── GameSession.hpp │ │ ├── PlayerUIContainer.hpp │ │ ├── SimpleContainer.hpp │ │ ├── actor │ │ ├── Actor.cpp │ │ ├── Actor.hpp │ │ ├── ActorDamageSource.hpp │ │ ├── ActorDefinitionIdentifier.hpp │ │ ├── ActorFactory.hpp │ │ ├── ActorFlags.hpp │ │ ├── ActorTerrainInterlockData.hpp │ │ ├── ActorType.hpp │ │ ├── Mob.cpp │ │ ├── Mob.hpp │ │ ├── ModelPartLocator.hpp │ │ ├── item │ │ │ └── ItemActor.hpp │ │ ├── player │ │ │ ├── Abilities.hpp │ │ │ ├── AnimatedImageData.hpp │ │ │ ├── Inventory.hpp │ │ │ ├── Player.cpp │ │ │ ├── Player.hpp │ │ │ ├── PlayerInventory.cpp │ │ │ ├── PlayerInventory.hpp │ │ │ ├── SerializedSkin.hpp │ │ │ └── SkinAdjustments.hpp │ │ └── provider │ │ │ └── SynchedActorDataAccess.hpp │ │ ├── containers │ │ ├── ContainerEnumName.hpp │ │ ├── ContainerFactory.cpp │ │ ├── ContainerFactory.hpp │ │ ├── ContainerValidation.hpp │ │ ├── FullContainerName.hpp │ │ ├── SlotData.hpp │ │ ├── controllers │ │ │ └── ContainerController.hpp │ │ ├── managers │ │ │ ├── IContainerManager.hpp │ │ │ ├── controllers │ │ │ │ ├── ContainerManagerController.hpp │ │ │ │ ├── CraftingContainerController.hpp │ │ │ │ └── CreativeContainerController.hpp │ │ │ └── models │ │ │ │ ├── ContainerManagerModel.hpp │ │ │ │ ├── CraftingContainerManagerModel.hpp │ │ │ │ ├── FilterResult.hpp │ │ │ │ └── LevelContainerManagerModel.hpp │ │ └── models │ │ │ ├── ContainerModel.hpp │ │ │ ├── ExpandoContainerModel.hpp │ │ │ ├── FilteredContainerModel.hpp │ │ │ ├── InventoryContainerModel.hpp │ │ │ ├── LevelContainerModel.hpp │ │ │ └── PlayerUIContainerModel.hpp │ │ ├── effect │ │ ├── EffectDuration.hpp │ │ ├── MobEffect.hpp │ │ └── MobEffectInstance.hpp │ │ ├── entity │ │ ├── EntityContext.hpp │ │ ├── EntityId.hpp │ │ ├── EntityIdTraits.hpp │ │ └── components │ │ │ ├── AbilitiesComponent.hpp │ │ │ ├── ActorDefinitionIdentifierComponent.hpp │ │ │ ├── ActorEquipmentComponent.hpp │ │ │ ├── ActorGameTypeComponent.hpp │ │ │ ├── ActorHeadRotationComponent.hpp │ │ │ ├── ActorOwnerComponent.hpp │ │ │ ├── ActorRotationComponent.hpp │ │ │ ├── ActorUniqueIDComponent.hpp │ │ │ ├── ActorWalkAnimationComponent.hpp │ │ │ ├── CameraDirectLookComponent.hpp │ │ │ ├── MovementInterpolatorComponent.hpp │ │ │ ├── StateVectorComponent.hpp │ │ │ ├── UnlockedRecipesClientComponent.hpp │ │ │ └── UserEntityIdentifierComponent.hpp │ │ ├── events │ │ ├── BlockEventCoordinator.hpp │ │ ├── EventResult.hpp │ │ ├── PlayerEventListener.hpp │ │ └── gameEvents │ │ │ └── GameEvent.hpp │ │ ├── gamemode │ │ ├── GameMode.cpp │ │ ├── GameMode.hpp │ │ └── GameModeMessenger.hpp │ │ ├── inventory │ │ ├── FillingContainer.asm │ │ ├── FillingContainer.cpp │ │ ├── FillingContainer.hpp │ │ ├── InventoryOptions.hpp │ │ ├── network │ │ │ ├── ContainerScreenContext.hpp │ │ │ ├── ItemStackNetIdVariant.hpp │ │ │ ├── ItemStackNetManagerBase.hpp │ │ │ ├── ItemStackNetManagerServer.hpp │ │ │ ├── ItemStackRequestActionHandler.hpp │ │ │ ├── NetworkItemStackDescriptor.hpp │ │ │ ├── SparseContainer.hpp │ │ │ ├── TypedClientNetId.hpp │ │ │ └── TypedServerNetId.hpp │ │ ├── simulation │ │ │ ├── ContainerValidatorFactory.hpp │ │ │ └── validation │ │ │ │ ├── ContainerScreenValidation.hpp │ │ │ │ └── ContainerScreenValidatorBase.hpp │ │ └── transaction │ │ │ ├── ComplexInventoryTransaction.hpp │ │ │ ├── InventoryAction.hpp │ │ │ ├── InventorySource.hpp │ │ │ ├── InventoryTransaction.hpp │ │ │ ├── InventoryTransactionItemGroup.hpp │ │ │ ├── InventoryTransactionManager.hpp │ │ │ └── ItemUseInventoryTransaction.hpp │ │ ├── item │ │ ├── AuxDataBlockItem.hpp │ │ ├── BlockItem.cpp │ │ ├── BlockItem.hpp │ │ ├── CreativeItemCategory.hpp │ │ ├── DiggerItem.hpp │ │ ├── FertilizerType.hpp │ │ ├── FoodItemComponentLegacy.hpp │ │ ├── HatchetItem.hpp │ │ ├── HoeItem.hpp │ │ ├── IFoodItemComponent.hpp │ │ ├── Item.cpp │ │ ├── Item.hpp │ │ ├── ItemCommandVisibility.hpp │ │ ├── ItemDescriptor.hpp │ │ ├── ItemDescriptorCount.hpp │ │ ├── ItemGroup.hpp │ │ ├── ItemInstance.hpp │ │ ├── ItemStack.cpp │ │ ├── ItemStack.hpp │ │ ├── ItemStackBase.cpp │ │ ├── ItemStackBase.hpp │ │ ├── ItemUseMethod.hpp │ │ ├── PickaxeItem.hpp │ │ ├── ResolvedItemIconInfo.hpp │ │ ├── SeedItemComponentLegacy.hpp │ │ ├── ShearsItem.cpp │ │ ├── ShearsItem.hpp │ │ ├── ShovelItem.hpp │ │ ├── ShulkerBoxBlockItem.hpp │ │ ├── UseAnim.hpp │ │ ├── VanillaItems.hpp │ │ ├── WeaponItem.hpp │ │ ├── alchemy │ │ │ └── PotionBrewing.hpp │ │ ├── crafting │ │ │ ├── Recipe.hpp │ │ │ └── Recipes.hpp │ │ ├── enchanting │ │ │ ├── Enchant.cpp │ │ │ ├── Enchant.hpp │ │ │ ├── EnchantUtils.hpp │ │ │ ├── EnchantmentInstance.hpp │ │ │ └── ItemEnchants.hpp │ │ └── registry │ │ │ ├── CreativeGroupInfo.hpp │ │ │ ├── CreativeItemEntry.hpp │ │ │ ├── CreativeItemGroupCategory.hpp │ │ │ ├── CreativeItemRegistry.hpp │ │ │ ├── ItemRegistry.cpp │ │ │ ├── ItemRegistry.hpp │ │ │ ├── ItemRegistryManager.hpp │ │ │ ├── ItemRegistryRef.cpp │ │ │ ├── ItemRegistryRef.hpp │ │ │ ├── TrimMaterial.hpp │ │ │ ├── TrimMaterialRegistry.hpp │ │ │ ├── TrimPattern.hpp │ │ │ └── TrimPatternRegistry.hpp │ │ ├── level │ │ ├── BlockPalette.hpp │ │ ├── BlockPos.cpp │ │ ├── BlockPos.hpp │ │ ├── BlockSource.cpp │ │ ├── BlockSource.hpp │ │ ├── BlockSourceListener.hpp │ │ ├── ChunkBlockPos.cpp │ │ ├── ChunkBlockPos.hpp │ │ ├── ChunkPos.hpp │ │ ├── DimensionManager.hpp │ │ ├── GameType.hpp │ │ ├── ILevel.hpp │ │ ├── IWorldRegistriesProvider.hpp │ │ ├── Level.hpp │ │ ├── LevelListener.hpp │ │ ├── LevelSettings.cpp │ │ ├── LevelSettings.hpp │ │ ├── Pos2d.hpp │ │ ├── Spawner.hpp │ │ ├── SubChunkPos.cpp │ │ ├── SubChunkPos.hpp │ │ ├── Tick.hpp │ │ ├── biome │ │ │ └── surface │ │ │ │ └── ISurfaceBuilder.hpp │ │ ├── block │ │ │ ├── ActorBlock.cpp │ │ │ ├── ActorBlock.hpp │ │ │ ├── Block.cpp │ │ │ ├── Block.hpp │ │ │ ├── Block.inl │ │ │ ├── BlockLegacy.cpp │ │ │ ├── BlockLegacy.hpp │ │ │ ├── BlockProperty.hpp │ │ │ ├── BlockRenderLayer.hpp │ │ │ ├── BlockShape.hpp │ │ │ ├── BlockState.hpp │ │ │ ├── FurnaceBlock.hpp │ │ │ ├── GetCollisionShapeInterface.hpp │ │ │ ├── LevelEvent.hpp │ │ │ ├── PillarAxis.hpp │ │ │ ├── VanillaStates.hpp │ │ │ ├── actor │ │ │ │ ├── BlockActor.cpp │ │ │ │ ├── BlockActor.hpp │ │ │ │ ├── BlockActorRendererId.hpp │ │ │ │ ├── ChestBlockActor.hpp │ │ │ │ ├── FurnaceBlockActor.hpp │ │ │ │ ├── RandomizableBlockActorContainers.cpp │ │ │ │ └── RandomizableBlockActorContainers.hpp │ │ │ ├── components │ │ │ │ ├── BlockComponentBase.hpp │ │ │ │ ├── BlockComponentStorage.hpp │ │ │ │ └── BlockMapColorComponent.hpp │ │ │ ├── definition │ │ │ │ └── BlockDefinitionGroup.hpp │ │ │ ├── registry │ │ │ │ ├── BlockTypeRegistry.hpp │ │ │ │ └── VanillaBlockTypeRegistry.hpp │ │ │ ├── traits │ │ │ │ └── block_trait │ │ │ │ │ ├── ITrait.hpp │ │ │ │ │ ├── PlacementDirection.cpp │ │ │ │ │ └── PlacementDirection.hpp │ │ │ └── types │ │ │ │ └── ChestBlock.hpp │ │ ├── chunk │ │ │ ├── BlockVolume.cpp │ │ │ ├── BlockVolume.hpp │ │ │ ├── ChunkGeneratorStructureState.hpp │ │ │ ├── ChunkSource.cpp │ │ │ ├── ChunkSource.hpp │ │ │ ├── ChunkState.hpp │ │ │ ├── LevelChunk.cpp │ │ │ ├── LevelChunk.hpp │ │ │ ├── LevelChunkFormat.hpp │ │ │ ├── LevelChunkGarbageCollector.hpp │ │ │ ├── SubChunk.cpp │ │ │ └── SubChunk.hpp │ │ ├── dimension │ │ │ ├── Dimension.cpp │ │ │ ├── Dimension.hpp │ │ │ ├── DimensionBrightnessRamp.cpp │ │ │ ├── DimensionBrightnessRamp.hpp │ │ │ ├── DimensionFactory.hpp │ │ │ ├── DimensionHeightRange.hpp │ │ │ ├── HeightRange.hpp │ │ │ ├── IDimension.hpp │ │ │ ├── IDimensionFactory.hpp │ │ │ ├── VanillaDimensions.cpp │ │ │ └── VanillaDimensions.hpp │ │ ├── levelgen │ │ │ ├── WorldGenerator.cpp │ │ │ ├── WorldGenerator.hpp │ │ │ ├── structure │ │ │ │ ├── StructureCache.hpp │ │ │ │ ├── StructureFeatureRegistry.asm │ │ │ │ ├── StructureFeatureRegistry.cpp │ │ │ │ ├── StructureFeatureRegistry.hpp │ │ │ │ ├── StructureFeatureType.hpp │ │ │ │ └── StructureSetRegistry.hpp │ │ │ └── v1 │ │ │ │ ├── FeatureTerrainAdjustments.hpp │ │ │ │ ├── HardcodedSpawnAreaRegistry.hpp │ │ │ │ └── IPreliminarySurfaceProvider.hpp │ │ ├── material │ │ │ ├── Material.cpp │ │ │ ├── Material.hpp │ │ │ └── MaterialType.hpp │ │ ├── saveddata │ │ │ └── SavedData.hpp │ │ └── storage │ │ │ ├── Experiments.hpp │ │ │ ├── ExperimentsStorage.hpp │ │ │ ├── GameRules.hpp │ │ │ ├── LevelData.cpp │ │ │ ├── LevelData.hpp │ │ │ ├── LevelSummary.cpp │ │ │ ├── LevelSummary.hpp │ │ │ └── StorageVersion.hpp │ │ └── phys │ │ ├── AABB.cpp │ │ ├── AABB.hpp │ │ ├── HitResult.hpp │ │ ├── ShapeType.hpp │ │ ├── Vec2.cpp │ │ ├── Vec2.hpp │ │ ├── Vec3.cpp │ │ ├── Vec3.hpp │ │ └── Vec4.hpp └── xmake.lua ├── LICENSE ├── README.md ├── data ├── .gitignore ├── config.json └── packs │ ├── BP │ └── .gitkeep │ ├── RP │ ├── contents.json │ ├── manifest.json │ ├── pack_icon.png │ ├── texts │ │ ├── en_US.lang │ │ └── pt_BR.lang │ └── ui │ │ ├── inventory_screen.tsx │ │ ├── start_screen.tsx │ │ └── ui_common.json │ └── data │ └── generated │ ├── deno.json │ └── deno.lock ├── mod.json ├── src ├── debug │ ├── AmethystDebugging.hpp │ ├── F3Menu.cpp │ └── F3Menu.hpp ├── game │ └── client │ │ ├── CustomUIRendererRegistry.cpp │ │ └── CustomUIRendererRegistry.hpp ├── hooks │ ├── client │ │ ├── Client.cpp │ │ ├── Client.hpp │ │ ├── Input.cpp │ │ ├── Input.hpp │ │ ├── Item.cpp │ │ ├── Item.hpp │ │ ├── Rendering.cpp │ │ ├── Rendering.hpp │ │ ├── Resource.cpp │ │ ├── Resource.hpp │ │ ├── UI.cpp │ │ └── UI.hpp │ └── shared │ │ ├── Block.cpp │ │ ├── Block.hpp │ │ ├── BlockRegistry.cpp │ │ ├── BlockRegistry.hpp │ │ ├── ItemRegistry.cpp │ │ ├── ItemRegistry.hpp │ │ ├── Networking.cpp │ │ ├── Networking.hpp │ │ ├── Resource.cpp │ │ ├── Resource.hpp │ │ ├── Shared.cpp │ │ └── Shared.hpp ├── loader │ ├── AmethystRuntime.cpp │ ├── AmethystRuntime.hpp │ ├── RuntimeContext.cpp │ ├── RuntimeContext.hpp │ ├── dllmain.cpp │ └── dllmain.hpp ├── mod │ ├── AmethystMod.cpp │ └── AmethystMod.hpp └── platforms │ ├── WindowsClientPlatform.cpp │ ├── WindowsClientPlatform.hpp │ ├── WindowsPlatformCommon.cpp │ ├── WindowsPlatformCommon.hpp │ ├── WindowsServerPlatform.cpp │ └── WindowsServerPlatform.hpp └── xmake.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/VersionTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.github/workflows/VersionTools.ts -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.github/workflows/pr_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AmethystAPI/include/Json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/Json.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/config/config.h -------------------------------------------------------------------------------- /AmethystAPI/include/entt/config/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/config/macro.h -------------------------------------------------------------------------------- /AmethystAPI/include/entt/config/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/config/version.h -------------------------------------------------------------------------------- /AmethystAPI/include/entt/container/dense_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/container/dense_map.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/container/dense_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/container/dense_set.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/container/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/container/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/container/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/container/table.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/algorithm.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/any.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/attribute.h -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/bit.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/compressed_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/compressed_pair.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/enum.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/family.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/family.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/hashed_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/hashed_string.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/ident.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/ident.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/iterator.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/memory.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/monostate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/monostate.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/ranges.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/tuple.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/type_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/type_info.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/type_traits.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/core/utility.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/component.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/entity.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/group.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/handle.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/helper.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/mixin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/mixin.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/observer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/organizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/organizer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/ranges.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/registry.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/runtime_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/runtime_view.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/snapshot.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/sparse_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/sparse_set.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/storage.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entity/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entity/view.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/entt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/entt.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/graph/adjacency_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/graph/adjacency_matrix.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/graph/dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/graph/dot.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/graph/flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/graph/flow.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/graph/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/graph/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/locator/locator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/locator/locator.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/adl_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/adl_pointer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/container.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/context.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/factory.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/meta.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/node.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/pointer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/policy.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/range.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/resolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/resolve.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/template.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/type_traits.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/meta/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/meta/utility.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/poly/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/poly/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/poly/poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/poly/poly.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/process/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/process/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/process/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/process/process.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/process/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/process/scheduler.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/resource/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/resource/cache.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/resource/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/resource/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/resource/loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/resource/loader.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/resource/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/resource/resource.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/signal/delegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/signal/delegate.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/signal/dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/signal/dispatcher.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/signal/emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/signal/emitter.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/signal/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/signal/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/entt/signal/sigh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/entt/signal/sigh.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/expected_lite/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/expected_lite/expected.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /AmethystAPI/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/exponential.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/fwd.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/geometric.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/glm.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /AmethystAPI/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/integer.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/matrix.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/packing.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/common.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/integer.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/packing.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/platform.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /AmethystAPI/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/vec2.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/vec3.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/vec4.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/gsl -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/gsl_algorithm -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/gsl_assert -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/gsl_byte -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/gsl_util -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/multi_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/multi_span -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/pointers -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/span -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/span_ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/span_ext -------------------------------------------------------------------------------- /AmethystAPI/include/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/gsl/string_span -------------------------------------------------------------------------------- /AmethystAPI/include/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/LICENSE -------------------------------------------------------------------------------- /AmethystAPI/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/autolink.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/config.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/features.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/forwards.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_batchallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_batchallocator.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_reader.cpp -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_tool.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_value.cpp -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_valueiterator.inl -------------------------------------------------------------------------------- /AmethystAPI/include/json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/json_writer.cpp -------------------------------------------------------------------------------- /AmethystAPI/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/reader.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/value.h -------------------------------------------------------------------------------- /AmethystAPI/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/json/writer.h -------------------------------------------------------------------------------- /AmethystAPI/include/neargye/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/neargye/LICENSE.txt -------------------------------------------------------------------------------- /AmethystAPI/include/neargye/semver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/include/neargye/semver.hpp -------------------------------------------------------------------------------- /AmethystAPI/mod_build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/mod_build.lua -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst-deps/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst-deps/Zydis.c -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst-deps/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst-deps/Zydis.h -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst-deps/safetyhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst-deps/safetyhook.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst-deps/safetyhook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst-deps/safetyhook.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Config.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Config.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Formatting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Formatting.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Imports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Imports.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Log.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Log.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Memory.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Memory.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Utility.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/Utility.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/game/CreativeItemRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/game/CreativeItemRegistry.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/game/CreativeItemRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/game/CreativeItemRegistry.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/AmethystContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/AmethystContext.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/AmethystContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/AmethystContext.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/EnumAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/EnumAllocator.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/HookManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/HookManager.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/HookManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/HookManager.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ModContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ModContext.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ModContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ModContext.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ctx/ClientContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ctx/ClientContext.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ctx/ServerContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ctx/ServerContext.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ctx/SharedContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ctx/SharedContext.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/ctx/SharedContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/ctx/SharedContext.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/BlockEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/BlockEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/EventBus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/EventBus.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/GameEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/GameEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/InputEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/InputEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/ModEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/ModEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/RegisterEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/RegisterEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/events/UiEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/events/UiEvents.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/importing/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/importing/Importer.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/importing/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/importing/Importer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/input/InputAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/input/InputAction.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/input/InputAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/input/InputAction.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/input/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/input/InputManager.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/input/InputManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/input/InputManager.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/Mod.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/Mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/Mod.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModDependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModDependency.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModDependency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModDependency.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModError.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModGraph.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModGraph.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModInfo.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModInfo.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModLoader.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModLoader.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModRepository.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModRepository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModRepository.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModuleHandle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/mod/ModuleHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/mod/ModuleHandle.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/platform/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/platform/Platform.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/platform/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/platform/Platform.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/resource/PackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/resource/PackManager.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/resource/PackManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/resource/PackManager.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/utility/InlineHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/utility/InlineHook.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/utility/Mixin.cpp: -------------------------------------------------------------------------------- 1 | /// WIP -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/utility/Mixin.hpp: -------------------------------------------------------------------------------- 1 | /// WIP -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/runtime/utility/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/runtime/utility/Version.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/ui/NinesliceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/ui/NinesliceHelper.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/amethyst/ui/NinesliceHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/amethyst/ui/NinesliceHelper.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-client/common/client/model/models/ChestModel.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-client/common/client/renderer/helpers/MeshHelpers.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/container/Blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/container/Blob.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/container/Blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/container/Blob.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/debug/log/ContentLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/debug/log/ContentLog.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/file/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/file/Path.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/file/Path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/file/Path.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/image/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/image/Image.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/math/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/math/Color.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/math/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/math/Color.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/math/DividedPos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/math/DividedPos2d.h -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/math/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/math/Math.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/resource/ResourceUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/resource/ResourceUtil.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/semVer/SemVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/semVer/SemVersion.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/string/StringHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/string/StringHash.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/string/StringHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/string/StringHash.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/threading/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/threading/Mutex.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/threading/SpinLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/threading/SpinLock.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/threading/SpinLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/threading/SpinLock.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/threading/TaskGroup.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class TaskGroup {}; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/AutomaticID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/AutomaticID.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/BinaryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/BinaryStream.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/BinaryStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/BinaryStream.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/CallStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/CallStack.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/ErrorInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/ErrorInfo.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/PropertyBag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/PropertyBag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/PropertyBag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/PropertyBag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/Result.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/StringUtils.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/StringUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/StringUtils.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/UUID.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/UUID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/UUID.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/buffer_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/buffer_span.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/core/utility/optional_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/core/utility/optional_ref.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/coregraphics/ImageBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/coregraphics/ImageBuffer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/ecs/WeakEntityRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/ecs/WeakEntityRef.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/ecs/systems/IEntitySystems.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/ecs/systems/IEntitySystems.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/expected.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/gamerefs/EnableGetWeakRef.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | template 4 | class EnableGetWeakRef { 5 | public: 6 | }; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/gamerefs/GameRefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/gamerefs/GameRefs.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/gamerefs/OwnerPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/gamerefs/OwnerPtr.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/gamerefs/StackRefResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/gamerefs/StackRefResult.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/gamerefs/WeakRef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/gamerefs/WeakRef.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/InputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/InputHandler.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/InputHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/InputHandler.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/InputMapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/InputMapping.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/InputMappingFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/InputMappingFactory.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/InputMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/InputMode.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/input/MouseDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/input/MouseDevice.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/raknet/RakNetGUID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/raknet/RakNetGUID.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/renderer/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/renderer/Camera.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/renderer/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/renderer/Matrix.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/renderer/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/renderer/Matrix.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/renderer/MatrixStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/renderer/MatrixStack.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src-deps/renderer/ViewportInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src-deps/renderer/ViewportInfo.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/ActorUniqueID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/ActorUniqueID.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/AppPlatformListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/AppPlatformListener.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/CommonTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/CommonTypes.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/CommonTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/CommonTypes.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/GameVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/GameVersion.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/Minecraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/Minecraft.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/Minecraft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/Minecraft.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/SharedPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/SharedPtr.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/locale/I18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/locale/I18n.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/locale/I18n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/locale/I18n.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ByteArrayTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ByteArrayTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ByteArrayTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ByteArrayTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ByteTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ByteTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ByteTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ByteTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/CompoundTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/CompoundTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/CompoundTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/CompoundTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/CompoundTagVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/CompoundTagVariant.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/CompoundTagVariant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/CompoundTagVariant.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/DoubleTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/DoubleTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/DoubleTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/DoubleTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/EndTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/EndTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/FloatTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/FloatTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/FloatTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/FloatTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/Int64Tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/Int64Tag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/Int64Tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/Int64Tag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/IntArrayTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/IntArrayTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/IntArrayTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/IntArrayTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/IntTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/IntTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/IntTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/IntTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ListTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ListTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ListTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ListTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/NbtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/NbtUtils.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/NbtUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/NbtUtils.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ShortTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ShortTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/ShortTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/ShortTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/StringTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/StringTag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/StringTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/StringTag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/Tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/Tag.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/Tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/Tag.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/nbt/TagMemoryChunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/nbt/TagMemoryChunk.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/network/NetEventCallback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/network/NetEventCallback.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/network/NetworkPeer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/network/NetworkPeer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/network/PacketSender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/network/PacketSender.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/network/packet/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/network/packet/Packet.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/network/packet/Packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/network/packet/Packet.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/options/AppConfigs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/options/AppConfigs.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/resources/InPackagePacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/resources/InPackagePacks.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/resources/PackSource.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class PackSource { 4 | void** vptr; 5 | }; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/server/ServerInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/server/ServerInstance.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/server/ServerPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/server/ServerPlayer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/server/SimulatedPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/server/SimulatedPlayer.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/server/SimulatedPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/server/SimulatedPlayer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/BiMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/BiMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/BiMap.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/DataIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/DataIO.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/Factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/Factory.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/Mirror.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/Mirror.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/NewType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/NewType.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/Rotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/Rotation.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/Timer.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/util/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/util/Timer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/Container.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/Difficulty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/Difficulty.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/Direction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/Direction.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/Facing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/Facing.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/Facing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/Facing.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/GameSession.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/GameSession.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/PlayerUIContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/PlayerUIContainer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/SimpleContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/SimpleContainer.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/Actor.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/Actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/Actor.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/ActorFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/ActorFactory.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/ActorFlags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/ActorFlags.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/ActorType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/ActorType.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/Mob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/Mob.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/Mob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/actor/Mob.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/actor/ModelPartLocator.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class ModelPartLocator {}; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/effect/EffectDuration.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct EffectDuration { 4 | int mValue; 5 | }; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/effect/MobEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/effect/MobEffect.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/entity/EntityId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/entity/EntityId.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/events/EventResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/events/EventResult.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/gamemode/GameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/gamemode/GameMode.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/inventory/simulation/validation/ContainerScreenValidatorBase.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/BlockItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/BlockItem.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/BlockItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/BlockItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/DiggerItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/DiggerItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/HatchetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/HatchetItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/HoeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/HoeItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/Item.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/Item.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ItemGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ItemGroup.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ItemStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ItemStack.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ItemStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ItemStack.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/PickaxeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/PickaxeItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ShearsItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ShearsItem.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ShearsItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ShearsItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/ShovelItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/ShovelItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/UseAnim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/UseAnim.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/item/WeaponItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/item/WeaponItem.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/BlockPos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/BlockPos.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/BlockPos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/BlockPos.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/ChunkPos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/ChunkPos.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/GameType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/GameType.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/ILevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/ILevel.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/Level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/Level.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/Pos2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/Pos2d.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/Spawner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/Spawner.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/Tick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/level/Tick.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/block/GetCollisionShapeInterface.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class GetCollisionShapeInterface {}; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/level/block/components/BlockComponentBase.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct BlockComponentBase {}; -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/AABB.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/AABB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/AABB.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/HitResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/HitResult.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/ShapeType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/ShapeType.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/Vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/Vec2.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/Vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/Vec2.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/Vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/Vec3.cpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/Vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/Vec3.hpp -------------------------------------------------------------------------------- /AmethystAPI/src/mc/src/common/world/phys/Vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/src/mc/src/common/world/phys/Vec4.hpp -------------------------------------------------------------------------------- /AmethystAPI/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/AmethystAPI/xmake.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.regolith -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/config.json -------------------------------------------------------------------------------- /data/packs/BP/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/packs/RP/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/contents.json -------------------------------------------------------------------------------- /data/packs/RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/manifest.json -------------------------------------------------------------------------------- /data/packs/RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/pack_icon.png -------------------------------------------------------------------------------- /data/packs/RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/texts/en_US.lang -------------------------------------------------------------------------------- /data/packs/RP/texts/pt_BR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/texts/pt_BR.lang -------------------------------------------------------------------------------- /data/packs/RP/ui/inventory_screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/ui/inventory_screen.tsx -------------------------------------------------------------------------------- /data/packs/RP/ui/start_screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/ui/start_screen.tsx -------------------------------------------------------------------------------- /data/packs/RP/ui/ui_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/RP/ui/ui_common.json -------------------------------------------------------------------------------- /data/packs/data/generated/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/data/generated/deno.json -------------------------------------------------------------------------------- /data/packs/data/generated/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/data/packs/data/generated/deno.lock -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/mod.json -------------------------------------------------------------------------------- /src/debug/AmethystDebugging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/debug/AmethystDebugging.hpp -------------------------------------------------------------------------------- /src/debug/F3Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/debug/F3Menu.cpp -------------------------------------------------------------------------------- /src/debug/F3Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/debug/F3Menu.hpp -------------------------------------------------------------------------------- /src/game/client/CustomUIRendererRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/game/client/CustomUIRendererRegistry.cpp -------------------------------------------------------------------------------- /src/game/client/CustomUIRendererRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/game/client/CustomUIRendererRegistry.hpp -------------------------------------------------------------------------------- /src/hooks/client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Client.cpp -------------------------------------------------------------------------------- /src/hooks/client/Client.hpp: -------------------------------------------------------------------------------- 1 | #ifdef CLIENT 2 | #pragma once 3 | namespace Amethyst::ClientHooks { 4 | void Initialize(); 5 | } 6 | #endif -------------------------------------------------------------------------------- /src/hooks/client/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Input.cpp -------------------------------------------------------------------------------- /src/hooks/client/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Input.hpp -------------------------------------------------------------------------------- /src/hooks/client/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Item.cpp -------------------------------------------------------------------------------- /src/hooks/client/Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Item.hpp -------------------------------------------------------------------------------- /src/hooks/client/Rendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Rendering.cpp -------------------------------------------------------------------------------- /src/hooks/client/Rendering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Rendering.hpp -------------------------------------------------------------------------------- /src/hooks/client/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Resource.cpp -------------------------------------------------------------------------------- /src/hooks/client/Resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/Resource.hpp -------------------------------------------------------------------------------- /src/hooks/client/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/UI.cpp -------------------------------------------------------------------------------- /src/hooks/client/UI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/client/UI.hpp -------------------------------------------------------------------------------- /src/hooks/shared/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Block.cpp -------------------------------------------------------------------------------- /src/hooks/shared/Block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Block.hpp -------------------------------------------------------------------------------- /src/hooks/shared/BlockRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/BlockRegistry.cpp -------------------------------------------------------------------------------- /src/hooks/shared/BlockRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/BlockRegistry.hpp -------------------------------------------------------------------------------- /src/hooks/shared/ItemRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/ItemRegistry.cpp -------------------------------------------------------------------------------- /src/hooks/shared/ItemRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/ItemRegistry.hpp -------------------------------------------------------------------------------- /src/hooks/shared/Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Networking.cpp -------------------------------------------------------------------------------- /src/hooks/shared/Networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Networking.hpp -------------------------------------------------------------------------------- /src/hooks/shared/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Resource.cpp -------------------------------------------------------------------------------- /src/hooks/shared/Resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Resource.hpp -------------------------------------------------------------------------------- /src/hooks/shared/Shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/hooks/shared/Shared.cpp -------------------------------------------------------------------------------- /src/hooks/shared/Shared.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | namespace Amethyst::SharedHooks { 3 | void Initialize(); 4 | } -------------------------------------------------------------------------------- /src/loader/AmethystRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/AmethystRuntime.cpp -------------------------------------------------------------------------------- /src/loader/AmethystRuntime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/AmethystRuntime.hpp -------------------------------------------------------------------------------- /src/loader/RuntimeContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/RuntimeContext.cpp -------------------------------------------------------------------------------- /src/loader/RuntimeContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/RuntimeContext.hpp -------------------------------------------------------------------------------- /src/loader/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/dllmain.cpp -------------------------------------------------------------------------------- /src/loader/dllmain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/loader/dllmain.hpp -------------------------------------------------------------------------------- /src/mod/AmethystMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/mod/AmethystMod.cpp -------------------------------------------------------------------------------- /src/mod/AmethystMod.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ModFunction extern "C" __declspec(dllexport) -------------------------------------------------------------------------------- /src/platforms/WindowsClientPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsClientPlatform.cpp -------------------------------------------------------------------------------- /src/platforms/WindowsClientPlatform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsClientPlatform.hpp -------------------------------------------------------------------------------- /src/platforms/WindowsPlatformCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsPlatformCommon.cpp -------------------------------------------------------------------------------- /src/platforms/WindowsPlatformCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsPlatformCommon.hpp -------------------------------------------------------------------------------- /src/platforms/WindowsServerPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsServerPlatform.cpp -------------------------------------------------------------------------------- /src/platforms/WindowsServerPlatform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/src/platforms/WindowsServerPlatform.hpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrederoxDev/Amethyst/HEAD/xmake.lua --------------------------------------------------------------------------------