├── .gitignore ├── Game ├── fmodL.dll ├── fmodstudioL.dll ├── freeglut.dll ├── glew32.dll ├── images │ ├── UI │ │ ├── black_frame.png │ │ ├── buttons.png │ │ ├── cursor.png │ │ ├── green_nums.png │ │ ├── lemm_font.png │ │ ├── nums.png │ │ ├── reserved_words.png │ │ ├── skull.png │ │ ├── white_frame.png │ │ └── work_names.png │ ├── credits.png │ ├── keys.png │ ├── lemming_anim.png │ ├── levels │ │ ├── doorHell.jpeg │ │ ├── fun1 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── fun2 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── fun3 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── fun4 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── fun7 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── lemming_doors.png │ │ ├── lemming_trapdoors.png │ │ ├── taxing1 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── tricky1 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ ├── tricky2 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ │ └── tricky3 │ │ │ ├── info.png │ │ │ ├── map.png │ │ │ └── mask.png │ ├── menu │ │ ├── aboutSprite.png │ │ ├── exitSprite.png │ │ ├── helpSprite.png │ │ ├── logo.png │ │ ├── menuBackground.png │ │ ├── modeSpriteSheet.png │ │ └── player1Sprite.png │ ├── particles.png │ ├── readme │ │ ├── demo.png │ │ ├── lemming.gif │ │ ├── lemmings-gameplay.gif │ │ └── skull_readme.png │ ├── results │ │ ├── buttons.png │ │ ├── disaster.png │ │ ├── good.png │ │ ├── justInTick.png │ │ ├── perfect.png │ │ ├── pink_nums.png │ │ └── practice.png │ └── rotated_lemming_anim.png ├── levels │ ├── fun-1.txt │ ├── fun-2.txt │ ├── fun-3.txt │ ├── fun-4.txt │ ├── fun-7.txt │ ├── taxing-1.txt │ ├── tricky-1.txt │ ├── tricky-2.txt │ └── tricky-3.txt ├── shaders │ ├── maskedTexture.frag │ ├── maskedTexture.vert │ ├── simple.frag │ ├── simple.vert │ ├── texture.frag │ └── texture.vert └── sounds │ ├── CreditsSong.ogg │ ├── InstructionsSong.ogg │ ├── Lemming1.ogg │ ├── Lemming2.ogg │ ├── Lemming3.ogg │ ├── Lemming4.ogg │ ├── Lemming7.ogg │ ├── MenuSong.ogg │ └── lemmingsEffects │ ├── BANG.WAV │ ├── CHAIN.WAV │ ├── CHANGEOP.WAV │ ├── CHINK.WAV │ ├── DIE.WAV │ ├── DOOR.WAV │ ├── ELECTRIC.WAV │ ├── EXPLODE.WAV │ ├── FIRE.WAV │ ├── GLUG.WAV │ ├── LETSGO.WAV │ ├── Letsgo.ogg │ ├── MANTRAP.WAV │ ├── MOUSEPRE.WAV │ ├── OHNO.WAV │ ├── OING.WAV │ ├── SCRAPE.WAV │ ├── SLICER.WAV │ ├── SPLASH.WAV │ ├── SPLAT.WAV │ ├── TENTON.WAV │ ├── THUD.WAV │ ├── THUNK.WAV │ ├── TING.WAV │ └── YIPPEE.WAV ├── LICENSE ├── Lemmings.sln ├── Lemmings.vcxproj ├── Lemmings.vcxproj.user ├── README.md ├── libs ├── FMODapi │ ├── fsbank │ │ ├── inc │ │ │ ├── fsbank.h │ │ │ └── fsbank_errors.h │ │ └── lib │ │ │ ├── fsbank.dll │ │ │ ├── fsbank64.dll │ │ │ ├── fsbank64_vc.lib │ │ │ ├── fsbank_vc.lib │ │ │ ├── libfsbvorbis.dll │ │ │ └── libfsbvorbis64.dll │ ├── lowlevel │ │ ├── inc │ │ │ ├── fmod.cs │ │ │ ├── fmod.h │ │ │ ├── fmod.hpp │ │ │ ├── fmod_codec.h │ │ │ ├── fmod_common.h │ │ │ ├── fmod_dsp.cs │ │ │ ├── fmod_dsp.h │ │ │ ├── fmod_dsp_effects.h │ │ │ ├── fmod_errors.cs │ │ │ ├── fmod_errors.h │ │ │ └── fmod_output.h │ │ └── lib │ │ │ ├── fmod.dll │ │ │ ├── fmod64.dll │ │ │ ├── fmod64_vc.lib │ │ │ ├── fmodL.dll │ │ │ ├── fmodL64.dll │ │ │ ├── fmodL64_vc.lib │ │ │ ├── fmodL_vc.lib │ │ │ ├── fmod_vc.lib │ │ │ ├── libfmod.a │ │ │ └── libfmodL.a │ └── studio │ │ ├── inc │ │ ├── fmod_studio.cs │ │ ├── fmod_studio.h │ │ ├── fmod_studio.hpp │ │ └── fmod_studio_common.h │ │ └── lib │ │ ├── fmodstudio.dll │ │ ├── fmodstudio64.dll │ │ ├── fmodstudio64_vc.lib │ │ ├── fmodstudioL.dll │ │ ├── fmodstudioL64.dll │ │ ├── fmodstudioL64_vc.lib │ │ ├── fmodstudioL_vc.lib │ │ ├── fmodstudio_vc.lib │ │ ├── libfmodstudio.a │ │ └── libfmodstudioL.a ├── Simple OpenGL Image Library │ ├── projects │ │ └── VC9 │ │ │ ├── Debug │ │ │ └── SOIL.lib │ │ │ └── SOIL.v12.suo │ └── src │ │ ├── SOIL.c │ │ ├── SOIL.h │ │ ├── image_DXT.c │ │ ├── image_DXT.h │ │ ├── image_helper.c │ │ ├── image_helper.h │ │ ├── original │ │ ├── stb_image-1.09.c │ │ └── stb_image-1.16.c │ │ ├── stb_image_aug.c │ │ ├── stb_image_aug.h │ │ ├── stbi_DDS_aug.h │ │ ├── stbi_DDS_aug_c.h │ │ └── test_SOIL.cpp ├── freeglut │ ├── Copying.txt │ ├── Readme.txt │ ├── include │ │ └── GL │ │ │ ├── freeglut.h │ │ │ ├── freeglut_ext.h │ │ │ ├── freeglut_std.h │ │ │ └── glut.h │ └── lib │ │ └── freeglut.lib ├── freetype-2.3.5-1-bin │ ├── include │ │ ├── freetype2 │ │ │ └── freetype │ │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ └── ft2build.h │ └── lib │ │ ├── freetype-bcc.lib │ │ ├── freetype.lib │ │ ├── freetype6.def │ │ ├── libfreetype.dll.a │ │ └── pkgconfig │ │ └── freetype2.pc ├── glew-1.13.0 │ ├── LICENSE.txt │ ├── README.txt │ ├── TODO.txt │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── lib │ │ └── Release │ │ └── Win32 │ │ └── glew32.lib └── glm │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cmake │ ├── glmBuildConfig.cmake.in │ └── glmConfig.cmake.in │ ├── copying.txt │ ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.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_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── 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 │ │ ├── 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 │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.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 │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── 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 │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── 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 │ │ ├── type_aligned.hpp │ │ ├── type_aligned.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 │ ├── readme.md │ ├── test │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── bug │ │ └── CMakeLists.txt │ ├── core │ │ ├── CMakeLists.txt │ │ ├── core_func_common.cpp │ │ ├── core_func_exponential.cpp │ │ ├── core_func_geometric.cpp │ │ ├── core_func_integer.cpp │ │ ├── core_func_integer_bit_count.cpp │ │ ├── core_func_integer_find_lsb.cpp │ │ ├── core_func_integer_find_msb.cpp │ │ ├── core_func_matrix.cpp │ │ ├── core_func_noise.cpp │ │ ├── core_func_packing.cpp │ │ ├── core_func_swizzle.cpp │ │ ├── core_func_trigonometric.cpp │ │ ├── core_func_vector_relational.cpp │ │ ├── core_setup_force_cxx98.cpp │ │ ├── core_setup_message.cpp │ │ ├── core_setup_precision.cpp │ │ ├── core_type_cast.cpp │ │ ├── core_type_ctor.cpp │ │ ├── core_type_float.cpp │ │ ├── core_type_int.cpp │ │ ├── core_type_length.cpp │ │ ├── core_type_length_size.cpp │ │ ├── core_type_mat2x2.cpp │ │ ├── core_type_mat2x3.cpp │ │ ├── core_type_mat2x4.cpp │ │ ├── core_type_mat3x2.cpp │ │ ├── core_type_mat3x3.cpp │ │ ├── core_type_mat3x4.cpp │ │ ├── core_type_mat4x2.cpp │ │ ├── core_type_mat4x3.cpp │ │ ├── core_type_mat4x4.cpp │ │ ├── core_type_vec1.cpp │ │ ├── core_type_vec2.cpp │ │ ├── core_type_vec3.cpp │ │ └── core_type_vec4.cpp │ ├── external │ │ └── gli │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ ├── dummy.cpp │ │ │ ├── generate_mipmaps.hpp │ │ │ ├── generate_mipmaps.inl │ │ │ ├── image2d.hpp │ │ │ ├── image2d.inl │ │ │ ├── operation.hpp │ │ │ ├── operation.inl │ │ │ ├── operator.hpp │ │ │ ├── operator.inl │ │ │ ├── shared_array.hpp │ │ │ ├── shared_array.inl │ │ │ ├── shared_ptr.hpp │ │ │ ├── shared_ptr.inl │ │ │ ├── size.hpp │ │ │ ├── size.inl │ │ │ ├── texture2d.hpp │ │ │ ├── texture2d.inl │ │ │ ├── texture2d_array.hpp │ │ │ ├── texture2d_array.inl │ │ │ ├── texture_cube.hpp │ │ │ ├── texture_cube.inl │ │ │ ├── texture_cube_array.hpp │ │ │ └── texture_cube_array.inl │ │ │ ├── gli.hpp │ │ │ └── gtx │ │ │ ├── compression.hpp │ │ │ ├── compression.inl │ │ │ ├── fetch.hpp │ │ │ ├── fetch.inl │ │ │ ├── gl_texture2d.hpp │ │ │ ├── gl_texture2d.inl │ │ │ ├── gradient.hpp │ │ │ ├── gradient.inl │ │ │ ├── loader.hpp │ │ │ ├── loader.inl │ │ │ ├── loader_dds10.hpp │ │ │ ├── loader_dds10.inl │ │ │ ├── loader_dds9.hpp │ │ │ ├── loader_dds9.inl │ │ │ ├── loader_tga.hpp │ │ │ ├── loader_tga.inl │ │ │ ├── wavelet.hpp │ │ │ └── wavelet.inl │ ├── glm.cppcheck │ ├── gtc │ │ ├── CMakeLists.txt │ │ ├── gtc_bitfield.cpp │ │ ├── gtc_color_space.cpp │ │ ├── gtc_constants.cpp │ │ ├── gtc_epsilon.cpp │ │ ├── gtc_integer.cpp │ │ ├── gtc_matrix_access.cpp │ │ ├── gtc_matrix_integer.cpp │ │ ├── gtc_matrix_inverse.cpp │ │ ├── gtc_matrix_transform.cpp │ │ ├── gtc_noise.cpp │ │ ├── gtc_packing.cpp │ │ ├── gtc_quaternion.cpp │ │ ├── gtc_random.cpp │ │ ├── gtc_reciprocal.cpp │ │ ├── gtc_round.cpp │ │ ├── gtc_type_precision.cpp │ │ ├── gtc_type_ptr.cpp │ │ ├── gtc_ulp.cpp │ │ ├── gtc_user_defined_types.cpp │ │ └── gtc_vec1.cpp │ └── gtx │ │ ├── CMakeLists.txt │ │ ├── gtx_associated_min_max.cpp │ │ ├── gtx_closest_point.cpp │ │ ├── gtx_color_space.cpp │ │ ├── gtx_color_space_YCoCg.cpp │ │ ├── gtx_common.cpp │ │ ├── gtx_compatibility.cpp │ │ ├── gtx_component_wise.cpp │ │ ├── gtx_dual_quaternion.cpp │ │ ├── gtx_euler_angle.cpp │ │ ├── gtx_extend.cpp │ │ ├── gtx_extented_min_max.cpp │ │ ├── gtx_fast_exponential.cpp │ │ ├── gtx_fast_square_root.cpp │ │ ├── gtx_fast_trigonometry.cpp │ │ ├── gtx_gradient_paint.cpp │ │ ├── gtx_handed_coordinate_space.cpp │ │ ├── gtx_int_10_10_10_2.cpp │ │ ├── gtx_integer.cpp │ │ ├── gtx_intersect.cpp │ │ ├── gtx_io.cpp │ │ ├── gtx_log_base.cpp │ │ ├── gtx_matrix_cross_product.cpp │ │ ├── gtx_matrix_decompose.cpp │ │ ├── gtx_matrix_interpolation.cpp │ │ ├── gtx_matrix_major_storage.cpp │ │ ├── gtx_matrix_operation.cpp │ │ ├── gtx_matrix_query.cpp │ │ ├── gtx_matrix_transform_2d.cpp │ │ ├── gtx_mixed_product.cpp │ │ ├── gtx_norm.cpp │ │ ├── gtx_normal.cpp │ │ ├── gtx_normalize_dot.cpp │ │ ├── gtx_number_precision.cpp │ │ ├── gtx_optimum_pow.cpp │ │ ├── gtx_orthonormalize.cpp │ │ ├── gtx_perpendicular.cpp │ │ ├── gtx_polar_coordinates.cpp │ │ ├── gtx_projection.cpp │ │ ├── gtx_quaternion.cpp │ │ ├── gtx_random.cpp │ │ ├── gtx_range.cpp │ │ ├── gtx_rotate_normalized_axis.cpp │ │ ├── gtx_rotate_vector.cpp │ │ ├── gtx_scalar_multiplication.cpp │ │ ├── gtx_scalar_relational.cpp │ │ ├── gtx_simd_mat4.cpp │ │ ├── gtx_simd_vec4.cpp │ │ ├── gtx_spline.cpp │ │ ├── gtx_string_cast.cpp │ │ ├── gtx_type_aligned.cpp │ │ ├── gtx_vector_angle.cpp │ │ ├── gtx_vector_query.cpp │ │ └── gtx_wrap.cpp │ └── util │ ├── autoexp.txt │ ├── autoexp.vc2010.dat │ ├── glm.natvis │ └── usertype.dat └── src ├── AnimKeyframes.h ├── Basher.cpp ├── Basher.h ├── Blocker.cpp ├── Blocker.h ├── Builder.cpp ├── Builder.h ├── Button.cpp ├── Button.h ├── ButtonFactory.cpp ├── ButtonFactory.h ├── ButtonNumFactory.cpp ├── ButtonNumFactory.h ├── Climber.cpp ├── Climber.h ├── Countdown.cpp ├── Countdown.h ├── Credits.cpp ├── Credits.h ├── CreditsKeyboardManager.cpp ├── CreditsKeyboardManager.h ├── CreditsMouseManager.h ├── Cursor.cpp ├── Cursor.h ├── Digger.cpp ├── Digger.h ├── Door.cpp ├── Door.h ├── DoorEgypt.cpp ├── DoorEgypt.h ├── DoorFactory.cpp ├── DoorFactory.h ├── DoorHell.cpp ├── DoorHell.h ├── DoorMaya.cpp ├── DoorMaya.h ├── DoorStandard.cpp ├── DoorStandard.h ├── EasyMaskManager.cpp ├── EasyMaskManager.h ├── Escaper.cpp ├── Escaper.h ├── Exploder.cpp ├── Exploder.h ├── Faller.cpp ├── Faller.h ├── Floater.cpp ├── Floater.h ├── Game.cpp ├── Game.h ├── GameState.cpp ├── GameState.h ├── GreenNumFactory.cpp ├── GreenNumFactory.h ├── HardMaskManager.cpp ├── HardMaskManager.h ├── InfoLevel.cpp ├── InfoLevel.h ├── InfoLevelKeyboardManager.cpp ├── InfoLevelKeyboardManager.h ├── InfoLevelMouseManager.h ├── Instructions.cpp ├── Instructions.h ├── InstructionsKeyboardManager.cpp ├── InstructionsKeyboardManager.h ├── InstructionsMouseManager.h ├── Job.cpp ├── Job.h ├── JobAssigner.cpp ├── JobAssigner.h ├── JobFactory.cpp ├── JobFactory.h ├── KeyFactory.cpp ├── KeyFactory.h ├── KeyboardManager.h ├── Lemming.cpp ├── Lemming.h ├── LetterFactory.cpp ├── LetterFactory.h ├── Level.cpp ├── Level.h ├── LevelManager.cpp ├── LevelManager.h ├── MaskManager.h ├── MaskedTexturedQuad.cpp ├── MaskedTexturedQuad.h ├── Menu.cpp ├── Menu.h ├── MenuKeyboardManager.cpp ├── MenuKeyboardManager.h ├── MenuMouseManager.h ├── Miner.cpp ├── Miner.h ├── MouseManager.h ├── NumDisplay.cpp ├── NumDisplay.h ├── NumDisplayButton.cpp ├── NumDisplayButton.h ├── NumDisplayGreen.cpp ├── NumDisplayGreen.h ├── NumFactory.h ├── Particle.cpp ├── Particle.h ├── ParticleFactory.cpp ├── ParticleFactory.h ├── ParticleSystem.cpp ├── ParticleSystem.h ├── ParticleSystemManager.cpp ├── ParticleSystemManager.h ├── PercentageDisplay.cpp ├── PercentageDisplay.h ├── PredefinedWordFactory.cpp ├── PredefinedWordFactory.h ├── PurpleNumFactory.cpp ├── PurpleNumFactory.h ├── PurplePercentageDisplay.cpp ├── PurplePercentageDisplay.h ├── Results.cpp ├── Results.h ├── ResultsKeyboardManager.cpp ├── ResultsKeyboardManager.h ├── ResultsMouseManager.h ├── Scene.cpp ├── Scene.h ├── SceneKeyboardManager.cpp ├── SceneKeyboardManager.h ├── SceneMouseManager.cpp ├── SceneMouseManager.h ├── Scroller.cpp ├── Scroller.h ├── Shader.cpp ├── Shader.h ├── ShaderManager.cpp ├── ShaderManager.h ├── ShaderProgram.cpp ├── ShaderProgram.h ├── SoundManager.cpp ├── SoundManager.h ├── Sprite.cpp ├── Sprite.h ├── StateManager.cpp ├── StateManager.h ├── Texture.cpp ├── Texture.h ├── TimeDisplay.cpp ├── TimeDisplay.h ├── Trapdoor.cpp ├── Trapdoor.h ├── TrapdoorFactory.cpp ├── TrapdoorFactory.h ├── TrapdoorHell.cpp ├── TrapdoorHell.h ├── TrapdoorStandard.cpp ├── TrapdoorStandard.h ├── UI.cpp ├── UI.h ├── UIAdapter.cpp ├── UIAdapter.h ├── Utils.cpp ├── Utils.h ├── VariableTexture.cpp ├── VariableTexture.h ├── Walker.cpp ├── Walker.h ├── Word.cpp ├── Word.h ├── common_defs.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/.gitignore -------------------------------------------------------------------------------- /Game/fmodL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/fmodL.dll -------------------------------------------------------------------------------- /Game/fmodstudioL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/fmodstudioL.dll -------------------------------------------------------------------------------- /Game/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/freeglut.dll -------------------------------------------------------------------------------- /Game/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/glew32.dll -------------------------------------------------------------------------------- /Game/images/UI/black_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/black_frame.png -------------------------------------------------------------------------------- /Game/images/UI/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/buttons.png -------------------------------------------------------------------------------- /Game/images/UI/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/cursor.png -------------------------------------------------------------------------------- /Game/images/UI/green_nums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/green_nums.png -------------------------------------------------------------------------------- /Game/images/UI/lemm_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/lemm_font.png -------------------------------------------------------------------------------- /Game/images/UI/nums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/nums.png -------------------------------------------------------------------------------- /Game/images/UI/reserved_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/reserved_words.png -------------------------------------------------------------------------------- /Game/images/UI/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/skull.png -------------------------------------------------------------------------------- /Game/images/UI/white_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/white_frame.png -------------------------------------------------------------------------------- /Game/images/UI/work_names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/UI/work_names.png -------------------------------------------------------------------------------- /Game/images/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/credits.png -------------------------------------------------------------------------------- /Game/images/keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/keys.png -------------------------------------------------------------------------------- /Game/images/lemming_anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/lemming_anim.png -------------------------------------------------------------------------------- /Game/images/levels/doorHell.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/doorHell.jpeg -------------------------------------------------------------------------------- /Game/images/levels/fun1/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun1/info.png -------------------------------------------------------------------------------- /Game/images/levels/fun1/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun1/map.png -------------------------------------------------------------------------------- /Game/images/levels/fun1/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun1/mask.png -------------------------------------------------------------------------------- /Game/images/levels/fun2/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun2/info.png -------------------------------------------------------------------------------- /Game/images/levels/fun2/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun2/map.png -------------------------------------------------------------------------------- /Game/images/levels/fun2/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun2/mask.png -------------------------------------------------------------------------------- /Game/images/levels/fun3/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun3/info.png -------------------------------------------------------------------------------- /Game/images/levels/fun3/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun3/map.png -------------------------------------------------------------------------------- /Game/images/levels/fun3/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun3/mask.png -------------------------------------------------------------------------------- /Game/images/levels/fun4/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun4/info.png -------------------------------------------------------------------------------- /Game/images/levels/fun4/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun4/map.png -------------------------------------------------------------------------------- /Game/images/levels/fun4/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun4/mask.png -------------------------------------------------------------------------------- /Game/images/levels/fun7/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun7/info.png -------------------------------------------------------------------------------- /Game/images/levels/fun7/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun7/map.png -------------------------------------------------------------------------------- /Game/images/levels/fun7/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/fun7/mask.png -------------------------------------------------------------------------------- /Game/images/levels/lemming_doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/lemming_doors.png -------------------------------------------------------------------------------- /Game/images/levels/lemming_trapdoors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/lemming_trapdoors.png -------------------------------------------------------------------------------- /Game/images/levels/taxing1/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/taxing1/info.png -------------------------------------------------------------------------------- /Game/images/levels/taxing1/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/taxing1/map.png -------------------------------------------------------------------------------- /Game/images/levels/taxing1/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/taxing1/mask.png -------------------------------------------------------------------------------- /Game/images/levels/tricky1/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky1/info.png -------------------------------------------------------------------------------- /Game/images/levels/tricky1/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky1/map.png -------------------------------------------------------------------------------- /Game/images/levels/tricky1/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky1/mask.png -------------------------------------------------------------------------------- /Game/images/levels/tricky2/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky2/info.png -------------------------------------------------------------------------------- /Game/images/levels/tricky2/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky2/map.png -------------------------------------------------------------------------------- /Game/images/levels/tricky2/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky2/mask.png -------------------------------------------------------------------------------- /Game/images/levels/tricky3/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky3/info.png -------------------------------------------------------------------------------- /Game/images/levels/tricky3/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky3/map.png -------------------------------------------------------------------------------- /Game/images/levels/tricky3/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/levels/tricky3/mask.png -------------------------------------------------------------------------------- /Game/images/menu/aboutSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/aboutSprite.png -------------------------------------------------------------------------------- /Game/images/menu/exitSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/exitSprite.png -------------------------------------------------------------------------------- /Game/images/menu/helpSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/helpSprite.png -------------------------------------------------------------------------------- /Game/images/menu/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/logo.png -------------------------------------------------------------------------------- /Game/images/menu/menuBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/menuBackground.png -------------------------------------------------------------------------------- /Game/images/menu/modeSpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/modeSpriteSheet.png -------------------------------------------------------------------------------- /Game/images/menu/player1Sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/menu/player1Sprite.png -------------------------------------------------------------------------------- /Game/images/particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/particles.png -------------------------------------------------------------------------------- /Game/images/readme/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/readme/demo.png -------------------------------------------------------------------------------- /Game/images/readme/lemming.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/readme/lemming.gif -------------------------------------------------------------------------------- /Game/images/readme/lemmings-gameplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/readme/lemmings-gameplay.gif -------------------------------------------------------------------------------- /Game/images/readme/skull_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/readme/skull_readme.png -------------------------------------------------------------------------------- /Game/images/results/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/buttons.png -------------------------------------------------------------------------------- /Game/images/results/disaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/disaster.png -------------------------------------------------------------------------------- /Game/images/results/good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/good.png -------------------------------------------------------------------------------- /Game/images/results/justInTick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/justInTick.png -------------------------------------------------------------------------------- /Game/images/results/perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/perfect.png -------------------------------------------------------------------------------- /Game/images/results/pink_nums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/pink_nums.png -------------------------------------------------------------------------------- /Game/images/results/practice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/results/practice.png -------------------------------------------------------------------------------- /Game/images/rotated_lemming_anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/images/rotated_lemming_anim.png -------------------------------------------------------------------------------- /Game/levels/fun-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/fun-1.txt -------------------------------------------------------------------------------- /Game/levels/fun-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/fun-2.txt -------------------------------------------------------------------------------- /Game/levels/fun-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/fun-3.txt -------------------------------------------------------------------------------- /Game/levels/fun-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/fun-4.txt -------------------------------------------------------------------------------- /Game/levels/fun-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/fun-7.txt -------------------------------------------------------------------------------- /Game/levels/taxing-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/taxing-1.txt -------------------------------------------------------------------------------- /Game/levels/tricky-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/tricky-1.txt -------------------------------------------------------------------------------- /Game/levels/tricky-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/tricky-2.txt -------------------------------------------------------------------------------- /Game/levels/tricky-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/levels/tricky-3.txt -------------------------------------------------------------------------------- /Game/shaders/maskedTexture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/maskedTexture.frag -------------------------------------------------------------------------------- /Game/shaders/maskedTexture.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/maskedTexture.vert -------------------------------------------------------------------------------- /Game/shaders/simple.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/simple.frag -------------------------------------------------------------------------------- /Game/shaders/simple.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/simple.vert -------------------------------------------------------------------------------- /Game/shaders/texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/texture.frag -------------------------------------------------------------------------------- /Game/shaders/texture.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/shaders/texture.vert -------------------------------------------------------------------------------- /Game/sounds/CreditsSong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/CreditsSong.ogg -------------------------------------------------------------------------------- /Game/sounds/InstructionsSong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/InstructionsSong.ogg -------------------------------------------------------------------------------- /Game/sounds/Lemming1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/Lemming1.ogg -------------------------------------------------------------------------------- /Game/sounds/Lemming2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/Lemming2.ogg -------------------------------------------------------------------------------- /Game/sounds/Lemming3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/Lemming3.ogg -------------------------------------------------------------------------------- /Game/sounds/Lemming4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/Lemming4.ogg -------------------------------------------------------------------------------- /Game/sounds/Lemming7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/Lemming7.ogg -------------------------------------------------------------------------------- /Game/sounds/MenuSong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/MenuSong.ogg -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/BANG.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/BANG.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/CHAIN.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/CHAIN.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/CHANGEOP.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/CHANGEOP.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/CHINK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/CHINK.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/DIE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/DIE.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/DOOR.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/DOOR.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/ELECTRIC.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/ELECTRIC.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/EXPLODE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/EXPLODE.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/FIRE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/FIRE.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/GLUG.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/GLUG.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/LETSGO.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/LETSGO.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/Letsgo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/Letsgo.ogg -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/MANTRAP.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/MANTRAP.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/MOUSEPRE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/MOUSEPRE.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/OHNO.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/OHNO.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/OING.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/OING.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/SCRAPE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/SCRAPE.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/SLICER.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/SLICER.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/SPLASH.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/SPLASH.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/SPLAT.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/SPLAT.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/TENTON.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/TENTON.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/THUD.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/THUD.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/THUNK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/THUNK.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/TING.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/TING.WAV -------------------------------------------------------------------------------- /Game/sounds/lemmingsEffects/YIPPEE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Game/sounds/lemmingsEffects/YIPPEE.WAV -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/LICENSE -------------------------------------------------------------------------------- /Lemmings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Lemmings.sln -------------------------------------------------------------------------------- /Lemmings.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Lemmings.vcxproj -------------------------------------------------------------------------------- /Lemmings.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/Lemmings.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/README.md -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/inc/fsbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/inc/fsbank.h -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/inc/fsbank_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/inc/fsbank_errors.h -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/fsbank.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/fsbank.dll -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/fsbank64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/fsbank64.dll -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/fsbank64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/fsbank64_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/fsbank_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/fsbank_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/libfsbvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/libfsbvorbis.dll -------------------------------------------------------------------------------- /libs/FMODapi/fsbank/lib/libfsbvorbis64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/fsbank/lib/libfsbvorbis64.dll -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod.cs -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod.hpp -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_codec.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_common.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_dsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_dsp.cs -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_dsp.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_dsp_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_dsp_effects.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_errors.cs -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_errors.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/inc/fmod_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/inc/fmod_output.h -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmod.dll -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmod64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmod64.dll -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmod64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmod64_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmodL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmodL.dll -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmodL64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmodL64.dll -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmodL64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmodL64_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmodL_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmodL_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/fmod_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/fmod_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/libfmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/libfmod.a -------------------------------------------------------------------------------- /libs/FMODapi/lowlevel/lib/libfmodL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/lowlevel/lib/libfmodL.a -------------------------------------------------------------------------------- /libs/FMODapi/studio/inc/fmod_studio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/inc/fmod_studio.cs -------------------------------------------------------------------------------- /libs/FMODapi/studio/inc/fmod_studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/inc/fmod_studio.h -------------------------------------------------------------------------------- /libs/FMODapi/studio/inc/fmod_studio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/inc/fmod_studio.hpp -------------------------------------------------------------------------------- /libs/FMODapi/studio/inc/fmod_studio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/inc/fmod_studio_common.h -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudio.dll -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudio64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudio64.dll -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudio64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudio64_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudioL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudioL.dll -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudioL64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudioL64.dll -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudioL64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudioL64_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudioL_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudioL_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/fmodstudio_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/fmodstudio_vc.lib -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/libfmodstudio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/libfmodstudio.a -------------------------------------------------------------------------------- /libs/FMODapi/studio/lib/libfmodstudioL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/FMODapi/studio/lib/libfmodstudioL.a -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/projects/VC9/Debug/SOIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/projects/VC9/Debug/SOIL.lib -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/projects/VC9/SOIL.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/projects/VC9/SOIL.v12.suo -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/SOIL.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/SOIL.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/image_DXT.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/image_DXT.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/image_helper.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/image_helper.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/original/stb_image-1.09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/original/stb_image-1.09.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/original/stb_image-1.16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/original/stb_image-1.16.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/stb_image_aug.c -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/stb_image_aug.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/stbi_DDS_aug.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/stbi_DDS_aug_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/stbi_DDS_aug_c.h -------------------------------------------------------------------------------- /libs/Simple OpenGL Image Library/src/test_SOIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/Simple OpenGL Image Library/src/test_SOIL.cpp -------------------------------------------------------------------------------- /libs/freeglut/Copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/Copying.txt -------------------------------------------------------------------------------- /libs/freeglut/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/Readme.txt -------------------------------------------------------------------------------- /libs/freeglut/include/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/include/GL/freeglut.h -------------------------------------------------------------------------------- /libs/freeglut/include/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/include/GL/freeglut_ext.h -------------------------------------------------------------------------------- /libs/freeglut/include/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/include/GL/freeglut_std.h -------------------------------------------------------------------------------- /libs/freeglut/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/include/GL/glut.h -------------------------------------------------------------------------------- /libs/freeglut/lib/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freeglut/lib/freeglut.lib -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftheader.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftoption.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/freetype.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbbox.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbdf.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftbitmap.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftcache.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftchapters.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fterrdef.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fterrors.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgasp.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftglyph.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgxval.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftgzip.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftimage.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftincrem.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlist.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftlzw.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmac.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmm.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmodapi.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftmoderr.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftotval.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftoutln.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftpfr.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftrender.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsizes.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsnames.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftstroke.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsynth.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftsystem.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fttrigon.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/fttypes.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ftxf86.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/t1tables.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ttnameid.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/tttables.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/tttags.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/freetype2/freetype/ttunpat.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/include/ft2build.h -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/lib/freetype-bcc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/lib/freetype-bcc.lib -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/lib/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/lib/freetype.lib -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/lib/freetype6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/lib/freetype6.def -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/lib/libfreetype.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/lib/libfreetype.dll.a -------------------------------------------------------------------------------- /libs/freetype-2.3.5-1-bin/lib/pkgconfig/freetype2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/freetype-2.3.5-1-bin/lib/pkgconfig/freetype2.pc -------------------------------------------------------------------------------- /libs/glew-1.13.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/LICENSE.txt -------------------------------------------------------------------------------- /libs/glew-1.13.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/README.txt -------------------------------------------------------------------------------- /libs/glew-1.13.0/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/TODO.txt -------------------------------------------------------------------------------- /libs/glew-1.13.0/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/include/GL/glew.h -------------------------------------------------------------------------------- /libs/glew-1.13.0/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/include/GL/glxew.h -------------------------------------------------------------------------------- /libs/glew-1.13.0/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/include/GL/wglew.h -------------------------------------------------------------------------------- /libs/glew-1.13.0/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glew-1.13.0/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /libs/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/.gitignore -------------------------------------------------------------------------------- /libs/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/cmake/glmBuildConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/cmake/glmBuildConfig.cmake.in -------------------------------------------------------------------------------- /libs/glm/cmake/glmConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/cmake/glmConfig.cmake.in -------------------------------------------------------------------------------- /libs/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/copying.txt -------------------------------------------------------------------------------- /libs/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/common.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/precision.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /libs/glm/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /libs/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /libs/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/ext.hpp -------------------------------------------------------------------------------- /libs/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /libs/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/glm.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /libs/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /libs/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /libs/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/integer.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /libs/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/packing.hpp -------------------------------------------------------------------------------- /libs/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /libs/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /libs/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /libs/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /libs/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/readme.md -------------------------------------------------------------------------------- /libs/glm/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/.DS_Store -------------------------------------------------------------------------------- /libs/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_common.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_exponential.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_geometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_geometric.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_integer.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_integer_bit_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_integer_bit_count.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_integer_find_lsb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_integer_find_lsb.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_integer_find_msb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_integer_find_msb.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_matrix.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_noise.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_packing.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_swizzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_swizzle.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_trigonometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_trigonometric.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_func_vector_relational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_func_vector_relational.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_setup_force_cxx98.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_setup_force_cxx98.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_setup_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_setup_message.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_setup_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_setup_precision.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_cast.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_ctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_ctor.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_float.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_int.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_length.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_length_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_length_size.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat2x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat2x2.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat2x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat2x3.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat2x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat2x4.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat3x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat3x2.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat3x3.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat3x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat3x4.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat4x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat4x2.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat4x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat4x3.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_mat4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_mat4x4.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_vec1.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_vec2.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_vec3.cpp -------------------------------------------------------------------------------- /libs/glm/test/core/core_type_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/core/core_type_vec4.cpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/dummy.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/generate_mipmaps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/generate_mipmaps.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/generate_mipmaps.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/generate_mipmaps.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/image2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/image2d.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/image2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/image2d.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/operation.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/operation.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/operator.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/operator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/operator.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/shared_array.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/shared_array.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/shared_array.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/shared_ptr.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/shared_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/shared_ptr.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/size.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/size.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/size.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture2d.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture2d.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture2d_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture2d_array.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture2d_array.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture2d_array.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture_cube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture_cube.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture_cube.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture_cube.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture_cube_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture_cube_array.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/core/texture_cube_array.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/core/texture_cube_array.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gli.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/compression.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/compression.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/compression.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/fetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/fetch.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/fetch.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/fetch.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/gl_texture2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/gl_texture2d.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/gl_texture2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/gl_texture2d.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/gradient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/gradient.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/gradient.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/gradient.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_dds10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_dds10.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_dds10.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_dds10.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_dds9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_dds9.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_dds9.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_dds9.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_tga.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_tga.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/loader_tga.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/loader_tga.inl -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/wavelet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/wavelet.hpp -------------------------------------------------------------------------------- /libs/glm/test/external/gli/gtx/wavelet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/external/gli/gtx/wavelet.inl -------------------------------------------------------------------------------- /libs/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /libs/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_bitfield.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_color_space.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_constants.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_matrix_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_matrix_access.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_matrix_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_matrix_integer.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_matrix_inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_matrix_inverse.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_matrix_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_matrix_transform.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_quaternion.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_reciprocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_reciprocal.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_type_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_type_precision.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_type_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_type_ptr.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_user_defined_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_user_defined_types.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_associated_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_associated_min_max.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_closest_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_closest_point.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_color_space.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_color_space_YCoCg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_color_space_YCoCg.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_compatibility.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_component_wise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_component_wise.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_dual_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_dual_quaternion.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_euler_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_euler_angle.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_extented_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_extented_min_max.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_fast_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_fast_exponential.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_fast_square_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_fast_square_root.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_fast_trigonometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_fast_trigonometry.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_gradient_paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_gradient_paint.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_handed_coordinate_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_handed_coordinate_space.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_int_10_10_10_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_int_10_10_10_2.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_intersect.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_log_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_log_base.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_cross_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_cross_product.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_decompose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_decompose.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_interpolation.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_major_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_major_storage.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_operation.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_query.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_matrix_transform_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_matrix_transform_2d.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_mixed_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_mixed_product.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_normalize_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_normalize_dot.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_number_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_number_precision.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_optimum_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_optimum_pow.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_orthonormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_orthonormalize.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_perpendicular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_perpendicular.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_polar_coordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_polar_coordinates.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_projection.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_quaternion.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_rotate_normalized_axis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_rotate_normalized_axis.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_rotate_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_rotate_vector.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_scalar_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_scalar_multiplication.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_scalar_relational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_scalar_relational.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_simd_mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_simd_mat4.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_simd_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_simd_vec4.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_string_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_string_cast.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_type_aligned.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_vector_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_vector_angle.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_vector_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_vector_query.cpp -------------------------------------------------------------------------------- /libs/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /libs/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/util/autoexp.txt -------------------------------------------------------------------------------- /libs/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /libs/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/util/glm.natvis -------------------------------------------------------------------------------- /libs/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/libs/glm/util/usertype.dat -------------------------------------------------------------------------------- /src/AnimKeyframes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/AnimKeyframes.h -------------------------------------------------------------------------------- /src/Basher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Basher.cpp -------------------------------------------------------------------------------- /src/Basher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Basher.h -------------------------------------------------------------------------------- /src/Blocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Blocker.cpp -------------------------------------------------------------------------------- /src/Blocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Blocker.h -------------------------------------------------------------------------------- /src/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Builder.cpp -------------------------------------------------------------------------------- /src/Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Builder.h -------------------------------------------------------------------------------- /src/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Button.cpp -------------------------------------------------------------------------------- /src/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Button.h -------------------------------------------------------------------------------- /src/ButtonFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ButtonFactory.cpp -------------------------------------------------------------------------------- /src/ButtonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ButtonFactory.h -------------------------------------------------------------------------------- /src/ButtonNumFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ButtonNumFactory.cpp -------------------------------------------------------------------------------- /src/ButtonNumFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ButtonNumFactory.h -------------------------------------------------------------------------------- /src/Climber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Climber.cpp -------------------------------------------------------------------------------- /src/Climber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Climber.h -------------------------------------------------------------------------------- /src/Countdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Countdown.cpp -------------------------------------------------------------------------------- /src/Countdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Countdown.h -------------------------------------------------------------------------------- /src/Credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Credits.cpp -------------------------------------------------------------------------------- /src/Credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Credits.h -------------------------------------------------------------------------------- /src/CreditsKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/CreditsKeyboardManager.cpp -------------------------------------------------------------------------------- /src/CreditsKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/CreditsKeyboardManager.h -------------------------------------------------------------------------------- /src/CreditsMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/CreditsMouseManager.h -------------------------------------------------------------------------------- /src/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Cursor.cpp -------------------------------------------------------------------------------- /src/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Cursor.h -------------------------------------------------------------------------------- /src/Digger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Digger.cpp -------------------------------------------------------------------------------- /src/Digger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Digger.h -------------------------------------------------------------------------------- /src/Door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Door.cpp -------------------------------------------------------------------------------- /src/Door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Door.h -------------------------------------------------------------------------------- /src/DoorEgypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorEgypt.cpp -------------------------------------------------------------------------------- /src/DoorEgypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorEgypt.h -------------------------------------------------------------------------------- /src/DoorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorFactory.cpp -------------------------------------------------------------------------------- /src/DoorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorFactory.h -------------------------------------------------------------------------------- /src/DoorHell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorHell.cpp -------------------------------------------------------------------------------- /src/DoorHell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorHell.h -------------------------------------------------------------------------------- /src/DoorMaya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorMaya.cpp -------------------------------------------------------------------------------- /src/DoorMaya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorMaya.h -------------------------------------------------------------------------------- /src/DoorStandard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorStandard.cpp -------------------------------------------------------------------------------- /src/DoorStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/DoorStandard.h -------------------------------------------------------------------------------- /src/EasyMaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/EasyMaskManager.cpp -------------------------------------------------------------------------------- /src/EasyMaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/EasyMaskManager.h -------------------------------------------------------------------------------- /src/Escaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Escaper.cpp -------------------------------------------------------------------------------- /src/Escaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Escaper.h -------------------------------------------------------------------------------- /src/Exploder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Exploder.cpp -------------------------------------------------------------------------------- /src/Exploder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Exploder.h -------------------------------------------------------------------------------- /src/Faller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Faller.cpp -------------------------------------------------------------------------------- /src/Faller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Faller.h -------------------------------------------------------------------------------- /src/Floater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Floater.cpp -------------------------------------------------------------------------------- /src/Floater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Floater.h -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Game.h -------------------------------------------------------------------------------- /src/GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/GameState.cpp -------------------------------------------------------------------------------- /src/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/GameState.h -------------------------------------------------------------------------------- /src/GreenNumFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/GreenNumFactory.cpp -------------------------------------------------------------------------------- /src/GreenNumFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/GreenNumFactory.h -------------------------------------------------------------------------------- /src/HardMaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/HardMaskManager.cpp -------------------------------------------------------------------------------- /src/HardMaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/HardMaskManager.h -------------------------------------------------------------------------------- /src/InfoLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InfoLevel.cpp -------------------------------------------------------------------------------- /src/InfoLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InfoLevel.h -------------------------------------------------------------------------------- /src/InfoLevelKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InfoLevelKeyboardManager.cpp -------------------------------------------------------------------------------- /src/InfoLevelKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InfoLevelKeyboardManager.h -------------------------------------------------------------------------------- /src/InfoLevelMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InfoLevelMouseManager.h -------------------------------------------------------------------------------- /src/Instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Instructions.cpp -------------------------------------------------------------------------------- /src/Instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Instructions.h -------------------------------------------------------------------------------- /src/InstructionsKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InstructionsKeyboardManager.cpp -------------------------------------------------------------------------------- /src/InstructionsKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InstructionsKeyboardManager.h -------------------------------------------------------------------------------- /src/InstructionsMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/InstructionsMouseManager.h -------------------------------------------------------------------------------- /src/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Job.cpp -------------------------------------------------------------------------------- /src/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Job.h -------------------------------------------------------------------------------- /src/JobAssigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/JobAssigner.cpp -------------------------------------------------------------------------------- /src/JobAssigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/JobAssigner.h -------------------------------------------------------------------------------- /src/JobFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/JobFactory.cpp -------------------------------------------------------------------------------- /src/JobFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/JobFactory.h -------------------------------------------------------------------------------- /src/KeyFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/KeyFactory.cpp -------------------------------------------------------------------------------- /src/KeyFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/KeyFactory.h -------------------------------------------------------------------------------- /src/KeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/KeyboardManager.h -------------------------------------------------------------------------------- /src/Lemming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Lemming.cpp -------------------------------------------------------------------------------- /src/Lemming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Lemming.h -------------------------------------------------------------------------------- /src/LetterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/LetterFactory.cpp -------------------------------------------------------------------------------- /src/LetterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/LetterFactory.h -------------------------------------------------------------------------------- /src/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Level.cpp -------------------------------------------------------------------------------- /src/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Level.h -------------------------------------------------------------------------------- /src/LevelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/LevelManager.cpp -------------------------------------------------------------------------------- /src/LevelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/LevelManager.h -------------------------------------------------------------------------------- /src/MaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MaskManager.h -------------------------------------------------------------------------------- /src/MaskedTexturedQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MaskedTexturedQuad.cpp -------------------------------------------------------------------------------- /src/MaskedTexturedQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MaskedTexturedQuad.h -------------------------------------------------------------------------------- /src/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Menu.cpp -------------------------------------------------------------------------------- /src/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Menu.h -------------------------------------------------------------------------------- /src/MenuKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MenuKeyboardManager.cpp -------------------------------------------------------------------------------- /src/MenuKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MenuKeyboardManager.h -------------------------------------------------------------------------------- /src/MenuMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MenuMouseManager.h -------------------------------------------------------------------------------- /src/Miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Miner.cpp -------------------------------------------------------------------------------- /src/Miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Miner.h -------------------------------------------------------------------------------- /src/MouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/MouseManager.h -------------------------------------------------------------------------------- /src/NumDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplay.cpp -------------------------------------------------------------------------------- /src/NumDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplay.h -------------------------------------------------------------------------------- /src/NumDisplayButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplayButton.cpp -------------------------------------------------------------------------------- /src/NumDisplayButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplayButton.h -------------------------------------------------------------------------------- /src/NumDisplayGreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplayGreen.cpp -------------------------------------------------------------------------------- /src/NumDisplayGreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumDisplayGreen.h -------------------------------------------------------------------------------- /src/NumFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/NumFactory.h -------------------------------------------------------------------------------- /src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Particle.cpp -------------------------------------------------------------------------------- /src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Particle.h -------------------------------------------------------------------------------- /src/ParticleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleFactory.cpp -------------------------------------------------------------------------------- /src/ParticleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleFactory.h -------------------------------------------------------------------------------- /src/ParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleSystem.cpp -------------------------------------------------------------------------------- /src/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleSystem.h -------------------------------------------------------------------------------- /src/ParticleSystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleSystemManager.cpp -------------------------------------------------------------------------------- /src/ParticleSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ParticleSystemManager.h -------------------------------------------------------------------------------- /src/PercentageDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PercentageDisplay.cpp -------------------------------------------------------------------------------- /src/PercentageDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PercentageDisplay.h -------------------------------------------------------------------------------- /src/PredefinedWordFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PredefinedWordFactory.cpp -------------------------------------------------------------------------------- /src/PredefinedWordFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PredefinedWordFactory.h -------------------------------------------------------------------------------- /src/PurpleNumFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PurpleNumFactory.cpp -------------------------------------------------------------------------------- /src/PurpleNumFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PurpleNumFactory.h -------------------------------------------------------------------------------- /src/PurplePercentageDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PurplePercentageDisplay.cpp -------------------------------------------------------------------------------- /src/PurplePercentageDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/PurplePercentageDisplay.h -------------------------------------------------------------------------------- /src/Results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Results.cpp -------------------------------------------------------------------------------- /src/Results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Results.h -------------------------------------------------------------------------------- /src/ResultsKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ResultsKeyboardManager.cpp -------------------------------------------------------------------------------- /src/ResultsKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ResultsKeyboardManager.h -------------------------------------------------------------------------------- /src/ResultsMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ResultsMouseManager.h -------------------------------------------------------------------------------- /src/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Scene.cpp -------------------------------------------------------------------------------- /src/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Scene.h -------------------------------------------------------------------------------- /src/SceneKeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SceneKeyboardManager.cpp -------------------------------------------------------------------------------- /src/SceneKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SceneKeyboardManager.h -------------------------------------------------------------------------------- /src/SceneMouseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SceneMouseManager.cpp -------------------------------------------------------------------------------- /src/SceneMouseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SceneMouseManager.h -------------------------------------------------------------------------------- /src/Scroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Scroller.cpp -------------------------------------------------------------------------------- /src/Scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Scroller.h -------------------------------------------------------------------------------- /src/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Shader.cpp -------------------------------------------------------------------------------- /src/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Shader.h -------------------------------------------------------------------------------- /src/ShaderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ShaderManager.cpp -------------------------------------------------------------------------------- /src/ShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ShaderManager.h -------------------------------------------------------------------------------- /src/ShaderProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ShaderProgram.cpp -------------------------------------------------------------------------------- /src/ShaderProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/ShaderProgram.h -------------------------------------------------------------------------------- /src/SoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SoundManager.cpp -------------------------------------------------------------------------------- /src/SoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/SoundManager.h -------------------------------------------------------------------------------- /src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Sprite.cpp -------------------------------------------------------------------------------- /src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Sprite.h -------------------------------------------------------------------------------- /src/StateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/StateManager.cpp -------------------------------------------------------------------------------- /src/StateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/StateManager.h -------------------------------------------------------------------------------- /src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Texture.cpp -------------------------------------------------------------------------------- /src/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Texture.h -------------------------------------------------------------------------------- /src/TimeDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TimeDisplay.cpp -------------------------------------------------------------------------------- /src/TimeDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TimeDisplay.h -------------------------------------------------------------------------------- /src/Trapdoor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Trapdoor.cpp -------------------------------------------------------------------------------- /src/Trapdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Trapdoor.h -------------------------------------------------------------------------------- /src/TrapdoorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorFactory.cpp -------------------------------------------------------------------------------- /src/TrapdoorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorFactory.h -------------------------------------------------------------------------------- /src/TrapdoorHell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorHell.cpp -------------------------------------------------------------------------------- /src/TrapdoorHell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorHell.h -------------------------------------------------------------------------------- /src/TrapdoorStandard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorStandard.cpp -------------------------------------------------------------------------------- /src/TrapdoorStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/TrapdoorStandard.h -------------------------------------------------------------------------------- /src/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/UI.cpp -------------------------------------------------------------------------------- /src/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/UI.h -------------------------------------------------------------------------------- /src/UIAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/UIAdapter.cpp -------------------------------------------------------------------------------- /src/UIAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/UIAdapter.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/VariableTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/VariableTexture.cpp -------------------------------------------------------------------------------- /src/VariableTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/VariableTexture.h -------------------------------------------------------------------------------- /src/Walker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Walker.cpp -------------------------------------------------------------------------------- /src/Walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Walker.h -------------------------------------------------------------------------------- /src/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Word.cpp -------------------------------------------------------------------------------- /src/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/Word.h -------------------------------------------------------------------------------- /src/common_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/common_defs.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlotacb/Lemmings/HEAD/src/main.cpp --------------------------------------------------------------------------------