├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── Game ├── EBOOT.PBP ├── EMU │ └── EBOOT.PBP ├── Minecraft.elf ├── Minecraft.prx ├── assets │ ├── blockData.dat │ ├── extract.py │ ├── font │ │ ├── arib.pgf │ │ ├── font.pgf │ │ ├── gb3s1518.bwfon │ │ ├── imagefont.bin │ │ ├── jpn0.pgf │ │ ├── kr0.pgf │ │ ├── ltn0.pgf │ │ ├── ltn1.pgf │ │ ├── ltn10.pgf │ │ ├── ltn11.pgf │ │ ├── ltn12.pgf │ │ ├── ltn13.pgf │ │ ├── ltn14.pgf │ │ ├── ltn15.pgf │ │ ├── ltn2.pgf │ │ ├── ltn3.pgf │ │ ├── ltn4.pgf │ │ ├── ltn5.pgf │ │ ├── ltn6.pgf │ │ ├── ltn7.pgf │ │ ├── ltn8.pgf │ │ └── ltn9.pgf │ ├── minecraft │ │ ├── lang │ │ │ ├── ba_ru.json │ │ │ ├── be_by.json │ │ │ ├── bg_bg.json │ │ │ ├── br_fr.json │ │ │ ├── brb.json │ │ │ ├── ca_es.json │ │ │ ├── cs_cz.json │ │ │ ├── cy_gb.json │ │ │ ├── da_dk.json │ │ │ ├── de_at.json │ │ │ ├── de_ch.json │ │ │ ├── de_de.json │ │ │ ├── en_au.json │ │ │ ├── en_ca.json │ │ │ ├── en_nz.json │ │ │ ├── en_us.json │ │ │ ├── en_ws.json │ │ │ ├── enp.json │ │ │ ├── es_CL.json │ │ │ ├── es_ar.json │ │ │ ├── es_es.json │ │ │ ├── es_mx.json │ │ │ ├── es_uy.json │ │ │ ├── es_ve.json │ │ │ ├── et_ee.json │ │ │ ├── fi_fi.json │ │ │ ├── fr_ca.json │ │ │ ├── fr_fr.json │ │ │ ├── fy_nl.json │ │ │ ├── ga_ie.json │ │ │ ├── gl_es.json │ │ │ ├── hu_hu.json │ │ │ ├── is_is.json │ │ │ ├── it_it.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── ksh_de.json │ │ │ ├── la_la.json │ │ │ ├── lang.json │ │ │ ├── lb_lu.json │ │ │ ├── lol_aa.json │ │ │ ├── lt_lt.json │ │ │ ├── lv_lv.json │ │ │ ├── nb_no.json │ │ │ ├── nds_de.json │ │ │ ├── nl_be.json │ │ │ ├── nl_nl.json │ │ │ ├── nn_no.json │ │ │ ├── ovd_se.json │ │ │ ├── pl_pl.json │ │ │ ├── pt_br.json │ │ │ ├── pt_pt.json │ │ │ ├── qya_aa.json │ │ │ ├── ro_ro.json │ │ │ ├── ru_ru.json │ │ │ ├── sk_sk.json │ │ │ ├── sl_si.json │ │ │ ├── sv_se.json │ │ │ ├── tr_tr.json │ │ │ ├── tt_ru.json │ │ │ ├── uk_ua.json │ │ │ ├── vec_it.json │ │ │ ├── vmf_de.json │ │ │ ├── zh_cn.json │ │ │ └── zh_tw.json │ │ └── textures │ │ │ ├── gui │ │ │ └── title │ │ │ │ └── background │ │ │ │ ├── panorama_0.png │ │ │ │ ├── panorama_1.png │ │ │ │ ├── panorama_2.png │ │ │ │ ├── panorama_3.png │ │ │ │ ├── panorama_4.png │ │ │ │ └── panorama_5.png │ │ │ ├── misc │ │ │ └── cross.png │ │ │ └── terrain_atlas.png │ ├── sounds │ │ ├── music │ │ │ ├── game │ │ │ │ ├── calm1.bgm │ │ │ │ ├── calm2.bgm │ │ │ │ ├── calm3.bgm │ │ │ │ ├── hal1.bgm │ │ │ │ ├── hal2.bgm │ │ │ │ ├── hal3.bgm │ │ │ │ ├── hal4.bgm │ │ │ │ ├── nuance1.bgm │ │ │ │ ├── nuance2.bgm │ │ │ │ ├── piano1.bgm │ │ │ │ ├── piano2.bgm │ │ │ │ └── piano3.bgm │ │ │ └── menu │ │ │ │ ├── menu1.bgm │ │ │ │ ├── menu2.bgm │ │ │ │ ├── menu3.bgm │ │ │ │ └── menu4.bgm │ │ └── random │ │ │ └── click.wav │ └── wav2bgm.exe ├── atlaser.py ├── blocktex_list.txt ├── config.json ├── mediaengine.prx ├── options.txt ├── resourcepacks │ └── EX3 │ │ ├── assets │ │ └── minecraft │ │ │ └── textures │ │ │ └── environment │ │ │ └── sun.png │ │ ├── pack.mcmeta │ │ └── pack.png └── saves │ └── a.txt ├── Minecraft ├── .vscode │ ├── c_cpp_properties.json │ └── settings.json ├── ICON0.png ├── MakefileGame ├── Minecraft.cpp ├── Minecraft │ ├── Client │ │ ├── Audio │ │ │ ├── MusicManager.cpp │ │ │ └── MusicManager.h │ │ ├── Player.cpp │ │ ├── Player.h │ │ ├── Rendering │ │ │ ├── Clouds.cpp │ │ │ ├── Clouds.h │ │ │ ├── Moon.cpp │ │ │ ├── Moon.h │ │ │ ├── Sky.cpp │ │ │ ├── Sky.h │ │ │ ├── Stars.cpp │ │ │ ├── Stars.h │ │ │ ├── Sun.cpp │ │ │ └── Sun.h │ │ ├── SPClient.cpp │ │ ├── SPClient.hpp │ │ └── World │ │ │ ├── BlockData.cpp │ │ │ ├── BlockData.h │ │ │ ├── Chunk.cpp │ │ │ ├── Chunk.h │ │ │ ├── ChunkMesh.cpp │ │ │ ├── ChunkMesh.h │ │ │ ├── Perlin.cpp │ │ │ ├── Perlin.h │ │ │ ├── World.cpp │ │ │ ├── World.h │ │ │ ├── WorldProvider.cpp │ │ │ └── WorldProvider.h │ ├── Common │ │ ├── Options.cpp │ │ ├── Options.hpp │ │ ├── Translations.cpp │ │ └── Translations.hpp │ ├── Menu │ │ ├── LoadingScreen.cpp │ │ ├── LoadingScreen.hpp │ │ ├── MenuState.cpp │ │ ├── MenuState.hpp │ │ └── components │ │ │ ├── ChatScreen.cpp │ │ │ ├── Controller.cpp │ │ │ ├── LanguageScreen.cpp │ │ │ ├── Multiplayer.cpp │ │ │ ├── OptionsMainScreen.cpp │ │ │ ├── OptionsMusicScreen.cpp │ │ │ ├── OptionsSkinCustomization.cpp │ │ │ ├── Panorama.cpp │ │ │ ├── Panorama.hpp │ │ │ ├── PlayGenerate.cpp │ │ │ ├── PlaySelect.cpp │ │ │ ├── ResourcePacks.cpp │ │ │ ├── Snooper.cpp │ │ │ ├── TitleScreen.cpp │ │ │ └── VideoScreen.cpp │ ├── State │ │ ├── GameState.h │ │ ├── StateManager.cpp │ │ └── StateManager.h │ └── Version.hpp ├── PARAM.SFO ├── PIC1.png ├── libs │ ├── include │ │ ├── Audio │ │ │ ├── AudioClip.h │ │ │ └── sound_utils │ │ │ │ ├── VirtualFile.h │ │ │ │ ├── audio.h │ │ │ │ ├── bgm.h │ │ │ │ ├── oslib.h │ │ │ │ ├── pgeWav.h │ │ │ │ └── readwav.h │ │ ├── Core │ │ │ └── Core.h │ │ ├── Events │ │ │ └── Events.h │ │ ├── Graphics │ │ │ ├── 2D │ │ │ │ └── SpriteBase.h │ │ │ ├── Dialogs.h │ │ │ ├── RenderTypes.h │ │ │ ├── RendererCore.h │ │ │ ├── TextureUtil.h │ │ │ └── UI │ │ │ │ └── UIBase.h │ │ ├── Math │ │ │ ├── AABB.h │ │ │ ├── Frustum.h │ │ │ ├── MathFuncs.h │ │ │ ├── Matrix.h │ │ │ ├── Quaternion.h │ │ │ ├── Ray.h │ │ │ └── Vector.h │ │ ├── Network │ │ │ ├── NetworkDriver.h │ │ │ ├── NetworkSerialization.h │ │ │ ├── NetworkTypes.h │ │ │ └── Socket.h │ │ ├── Platform │ │ │ └── Platform.h │ │ ├── Profiler │ │ │ └── Profiler.h │ │ ├── Utilities │ │ │ ├── Input.h │ │ │ ├── JSON.h │ │ │ ├── Logger.h │ │ │ ├── Thread.h │ │ │ ├── Timer.h │ │ │ └── UUID.h │ │ ├── driver │ │ │ └── me.h │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _literals.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── dummy.cpp │ │ │ │ ├── func_common.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_exponential.hpp │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_geometric.hpp │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_integer.hpp │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_matrix.hpp │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_noise.hpp │ │ │ │ ├── func_noise.inl │ │ │ │ ├── func_packing.hpp │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_trigonometric.hpp │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_vector_relational.hpp │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── hint.hpp │ │ │ │ ├── intrinsic_common.hpp │ │ │ │ ├── intrinsic_common.inl │ │ │ │ ├── intrinsic_exponential.hpp │ │ │ │ ├── intrinsic_exponential.inl │ │ │ │ ├── intrinsic_geometric.hpp │ │ │ │ ├── intrinsic_geometric.inl │ │ │ │ ├── intrinsic_integer.hpp │ │ │ │ ├── intrinsic_integer.inl │ │ │ │ ├── intrinsic_matrix.hpp │ │ │ │ ├── intrinsic_matrix.inl │ │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ │ ├── intrinsic_trigonometric.inl │ │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ │ ├── intrinsic_vector_relational.inl │ │ │ │ ├── precision.hpp │ │ │ │ ├── precision.inl │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_gentype.hpp │ │ │ │ ├── type_gentype.inl │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_int.hpp │ │ │ │ ├── type_mat.hpp │ │ │ │ ├── type_mat.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_vec.hpp │ │ │ │ ├── type_vec.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 │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.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 │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ └── ulp.inl │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extented_min_max.hpp │ │ │ │ ├── extented_min_max.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── inertia.hpp │ │ │ │ ├── inertia.inl │ │ │ │ ├── int_10_10_10_2.hpp │ │ │ │ ├── int_10_10_10_2.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_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 │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── multiple.hpp │ │ │ │ ├── multiple.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── 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 │ │ │ │ ├── random.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── simd_mat4.hpp │ │ │ │ ├── simd_mat4.inl │ │ │ │ ├── simd_quat.hpp │ │ │ │ ├── simd_quat.inl │ │ │ │ ├── simd_vec4.hpp │ │ │ │ ├── simd_vec4.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── unsigned_int.hpp │ │ │ │ ├── unsigned_int.inl │ │ │ │ ├── vec1.hpp │ │ │ │ ├── vec1.inl │ │ │ │ ├── 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 │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ ├── vector_relational.hpp │ │ │ └── virtrev │ │ │ │ └── xstream.hpp │ │ ├── intraFont.h │ │ ├── json │ │ │ ├── allocator.h │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ │ ├── libccc.h │ │ ├── mclib │ │ │ └── common │ │ │ │ └── Vector.h │ │ ├── melib.h │ │ └── pspmath.h │ └── lib │ │ ├── libME.a │ │ ├── libintraFont.a │ │ ├── libjson.a │ │ ├── libpspmath.a │ │ └── libstardust.a ├── makefile └── tools │ ├── Blockgen │ └── Blockgen.cpp ├── README.md ├── clean.sh ├── license.txt ├── path.sh └── rebuild.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Game/EBOOT.PBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/EBOOT.PBP -------------------------------------------------------------------------------- /Game/EMU/EBOOT.PBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/EMU/EBOOT.PBP -------------------------------------------------------------------------------- /Game/Minecraft.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/Minecraft.elf -------------------------------------------------------------------------------- /Game/Minecraft.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/Minecraft.prx -------------------------------------------------------------------------------- /Game/assets/blockData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/blockData.dat -------------------------------------------------------------------------------- /Game/assets/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/extract.py -------------------------------------------------------------------------------- /Game/assets/font/arib.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/arib.pgf -------------------------------------------------------------------------------- /Game/assets/font/font.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/font.pgf -------------------------------------------------------------------------------- /Game/assets/font/gb3s1518.bwfon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/gb3s1518.bwfon -------------------------------------------------------------------------------- /Game/assets/font/imagefont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/imagefont.bin -------------------------------------------------------------------------------- /Game/assets/font/jpn0.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/jpn0.pgf -------------------------------------------------------------------------------- /Game/assets/font/kr0.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/kr0.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn0.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn0.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn1.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn1.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn10.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn10.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn11.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn11.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn12.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn12.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn13.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn13.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn14.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn14.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn15.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn15.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn2.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn2.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn3.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn3.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn4.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn4.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn5.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn5.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn6.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn6.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn7.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn7.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn8.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn8.pgf -------------------------------------------------------------------------------- /Game/assets/font/ltn9.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/font/ltn9.pgf -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ba_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ba_ru.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/be_by.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/be_by.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/bg_bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/bg_bg.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/br_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/br_fr.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/brb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/brb.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ca_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ca_es.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/cs_cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/cs_cz.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/cy_gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/cy_gb.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/da_dk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/da_dk.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/de_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/de_at.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/de_ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/de_ch.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/de_de.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/en_au.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/en_au.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/en_ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/en_ca.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/en_nz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/en_nz.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/en_us.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/en_ws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/en_ws.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/enp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/enp.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_CL.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_ar.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_es.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_mx.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_uy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_uy.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/es_ve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/es_ve.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/et_ee.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/fi_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/fi_fi.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/fr_ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/fr_ca.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/fr_fr.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/fy_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/fy_nl.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ga_ie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ga_ie.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/gl_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/gl_es.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/hu_hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/hu_hu.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/is_is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/is_is.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/it_it.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ja_jp.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ko_kr.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ksh_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ksh_de.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/la_la.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/la_la.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/lang.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/lb_lu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/lb_lu.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/lol_aa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/lol_aa.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/lt_lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/lt_lt.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/lv_lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/lv_lv.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/nb_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/nb_no.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/nds_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/nds_de.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/nl_be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/nl_be.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/nl_nl.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/nn_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/nn_no.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ovd_se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ovd_se.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/pl_pl.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/pt_br.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/pt_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/pt_pt.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/qya_aa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/qya_aa.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ro_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ro_ro.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/ru_ru.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/sk_sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/sk_sk.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/sl_si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/sl_si.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/sv_se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/sv_se.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/tr_tr.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/tt_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/tt_ru.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/uk_ua.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/vec_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/vec_it.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/vmf_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/vmf_de.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/zh_cn.json -------------------------------------------------------------------------------- /Game/assets/minecraft/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/lang/zh_tw.json -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_0.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_1.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_2.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_3.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_4.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/gui/title/background/panorama_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/gui/title/background/panorama_5.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/misc/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/misc/cross.png -------------------------------------------------------------------------------- /Game/assets/minecraft/textures/terrain_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/minecraft/textures/terrain_atlas.png -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/calm1.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/calm1.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/calm2.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/calm2.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/calm3.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/calm3.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/hal1.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/hal1.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/hal2.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/hal2.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/hal3.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/hal3.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/hal4.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/hal4.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/nuance1.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/nuance1.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/nuance2.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/nuance2.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/piano1.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/piano1.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/piano2.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/piano2.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/game/piano3.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/game/piano3.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/menu/menu1.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/menu/menu1.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/menu/menu2.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/menu/menu2.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/menu/menu3.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/menu/menu3.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/music/menu/menu4.bgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/music/menu/menu4.bgm -------------------------------------------------------------------------------- /Game/assets/sounds/random/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/sounds/random/click.wav -------------------------------------------------------------------------------- /Game/assets/wav2bgm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/assets/wav2bgm.exe -------------------------------------------------------------------------------- /Game/atlaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/atlaser.py -------------------------------------------------------------------------------- /Game/blocktex_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/blocktex_list.txt -------------------------------------------------------------------------------- /Game/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/config.json -------------------------------------------------------------------------------- /Game/mediaengine.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/mediaengine.prx -------------------------------------------------------------------------------- /Game/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/options.txt -------------------------------------------------------------------------------- /Game/resourcepacks/EX3/assets/minecraft/textures/environment/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/resourcepacks/EX3/assets/minecraft/textures/environment/sun.png -------------------------------------------------------------------------------- /Game/resourcepacks/EX3/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/resourcepacks/EX3/pack.mcmeta -------------------------------------------------------------------------------- /Game/resourcepacks/EX3/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Game/resourcepacks/EX3/pack.png -------------------------------------------------------------------------------- /Game/saves/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Minecraft/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Minecraft/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/.vscode/settings.json -------------------------------------------------------------------------------- /Minecraft/ICON0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/ICON0.png -------------------------------------------------------------------------------- /Minecraft/MakefileGame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/MakefileGame -------------------------------------------------------------------------------- /Minecraft/Minecraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Audio/MusicManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Audio/MusicManager.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Audio/MusicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Audio/MusicManager.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Player.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Player.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Clouds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Clouds.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Clouds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Clouds.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Moon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Moon.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Moon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Moon.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Sky.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Sky.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Stars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Stars.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Stars.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Sun.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/Rendering/Sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/Rendering/Sun.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/SPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/SPClient.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/SPClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/SPClient.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/BlockData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/BlockData.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/BlockData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/BlockData.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/Chunk.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/Chunk.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/ChunkMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/ChunkMesh.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/ChunkMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/ChunkMesh.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/Perlin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/Perlin.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/Perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/Perlin.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/World.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/World.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/WorldProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/WorldProvider.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Client/World/WorldProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Client/World/WorldProvider.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Common/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Common/Options.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Common/Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Common/Options.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Common/Translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Common/Translations.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Common/Translations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Common/Translations.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/LoadingScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/LoadingScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/LoadingScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/LoadingScreen.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/MenuState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/MenuState.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/MenuState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/MenuState.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/ChatScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/ChatScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/Controller.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/LanguageScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/LanguageScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/Multiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/Multiplayer.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/OptionsMainScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/OptionsMainScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/OptionsMusicScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/OptionsMusicScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/OptionsSkinCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/OptionsSkinCustomization.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/Panorama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/Panorama.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/Panorama.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/Panorama.hpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/PlayGenerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/PlayGenerate.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/PlaySelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/PlaySelect.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/ResourcePacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/ResourcePacks.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/Snooper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/Snooper.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/TitleScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/TitleScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/Menu/components/VideoScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Menu/components/VideoScreen.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/State/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/State/GameState.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/State/StateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/State/StateManager.cpp -------------------------------------------------------------------------------- /Minecraft/Minecraft/State/StateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/State/StateManager.h -------------------------------------------------------------------------------- /Minecraft/Minecraft/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/Minecraft/Version.hpp -------------------------------------------------------------------------------- /Minecraft/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/PARAM.SFO -------------------------------------------------------------------------------- /Minecraft/PIC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/PIC1.png -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/AudioClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/AudioClip.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/VirtualFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/VirtualFile.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/audio.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/bgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/bgm.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/oslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/oslib.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/pgeWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/pgeWav.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Audio/sound_utils/readwav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Audio/sound_utils/readwav.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Core/Core.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Events/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Events/Events.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/2D/SpriteBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/2D/SpriteBase.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/Dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/Dialogs.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/RenderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/RenderTypes.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/RendererCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/RendererCore.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/TextureUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/TextureUtil.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Graphics/UI/UIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Graphics/UI/UIBase.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/AABB.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/Frustum.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/MathFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/MathFuncs.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/Matrix.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/Quaternion.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/Ray.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Math/Vector.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Network/NetworkDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Network/NetworkDriver.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Network/NetworkSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Network/NetworkSerialization.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Network/NetworkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Network/NetworkTypes.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Network/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Network/Socket.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Platform/Platform.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Profiler/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Profiler/Profiler.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/Input.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/JSON.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/Logger.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/Thread.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/Timer.h -------------------------------------------------------------------------------- /Minecraft/libs/include/Utilities/UUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/Utilities/UUID.h -------------------------------------------------------------------------------- /Minecraft/libs/include/driver/me.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/driver/me.h -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/common.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/hint.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/exponential.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/ext.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/fwd.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/geometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/glm.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/random.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/integer.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/matrix.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/packing.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/vec2.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/vec3.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/vec4.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /Minecraft/libs/include/intraFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/intraFont.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/allocator.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/assertions.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/autolink.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/config.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/features.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/forwards.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/json.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/reader.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/value.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/version.h -------------------------------------------------------------------------------- /Minecraft/libs/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/json/writer.h -------------------------------------------------------------------------------- /Minecraft/libs/include/libccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/libccc.h -------------------------------------------------------------------------------- /Minecraft/libs/include/mclib/common/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/mclib/common/Vector.h -------------------------------------------------------------------------------- /Minecraft/libs/include/melib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/melib.h -------------------------------------------------------------------------------- /Minecraft/libs/include/pspmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/include/pspmath.h -------------------------------------------------------------------------------- /Minecraft/libs/lib/libME.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/lib/libME.a -------------------------------------------------------------------------------- /Minecraft/libs/lib/libintraFont.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/lib/libintraFont.a -------------------------------------------------------------------------------- /Minecraft/libs/lib/libjson.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/lib/libjson.a -------------------------------------------------------------------------------- /Minecraft/libs/lib/libpspmath.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/lib/libpspmath.a -------------------------------------------------------------------------------- /Minecraft/libs/lib/libstardust.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/libs/lib/libstardust.a -------------------------------------------------------------------------------- /Minecraft/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/makefile -------------------------------------------------------------------------------- /Minecraft/tools/Blockgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/tools/Blockgen -------------------------------------------------------------------------------- /Minecraft/tools/Blockgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/Minecraft/tools/Blockgen.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/clean.sh -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/license.txt -------------------------------------------------------------------------------- /path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/path.sh -------------------------------------------------------------------------------- /rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IridescentRose/MC-PSP/HEAD/rebuild.sh --------------------------------------------------------------------------------