├── .gitattributes ├── .gitignore ├── .png ├── README.md ├── Release ├── Cubemap.obj ├── Mesh.obj ├── Raytracer.obj ├── Renderer.obj ├── SOIL.obj ├── Shader.obj ├── Texture.obj ├── Water.exe ├── Water.iobj ├── Water.ipdb ├── Water.log ├── Water.obj ├── Water.pdb ├── Water.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Water.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── freeglut.dll ├── glew32.dll ├── glewinfo.exe ├── glewinfo.txt ├── glfw3.dll ├── image_DXT.obj ├── image_helper.obj ├── images │ ├── shaders │ │ ├── RendererCaustics.frag │ │ ├── RendererCaustics.vert │ │ ├── RendererCubeBox.frag │ │ ├── RendererCubeBox.vert │ │ ├── RendererWater.frag │ │ ├── RendererWater.vert │ │ ├── WaterDropShader.frag │ │ ├── WaterNormalShader.frag │ │ ├── WaterUpdateShader.frag │ │ └── WaterVertex.vert │ ├── tiles.jpg │ ├── tiles.png │ ├── xneg.jpg │ ├── xpos.jpg │ ├── ypos.jpg │ ├── zneg.jpg │ └── zpos.jpg ├── main.obj ├── openal32.dll ├── sfml-graphics-2.dll ├── sfml-system-2.dll ├── sfml-window-2.dll ├── shaders │ ├── RendererCaustics.frag │ ├── RendererCaustics.vert │ ├── RendererCubeBox.frag │ ├── RendererCubeBox.vert │ ├── RendererWater.frag │ ├── RendererWater.vert │ ├── WaterDropShader.frag │ ├── WaterNormalShader.frag │ ├── WaterUpdateShader.frag │ └── WaterVertex.vert ├── stb_image_aug.obj ├── vc140.pdb ├── vec3.obj ├── visualinfo.exe ├── vsMathLib.obj └── vsShaderLib.obj ├── Water.VC.db ├── Water.sln ├── Water.v11.suo ├── Water.vcxproj ├── Water.vcxproj.filters ├── external ├── SOIL │ ├── SOIL.c │ ├── SOIL.h │ ├── image_DXT.c │ ├── image_DXT.h │ ├── image_helper.c │ ├── image_helper.h │ ├── stb_image_aug.c │ ├── stb_image_aug.h │ ├── stbi_DDS_aug.h │ └── stbi_DDS_aug_c.h ├── freeglut-2.8.1 │ └── GL │ │ ├── freeglut.h │ │ ├── freeglut_ext.h │ │ ├── freeglut_std.h │ │ └── glut.h ├── glew-1.10.0 │ └── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h ├── libs │ ├── freeglut.dll │ ├── freeglut.lib │ ├── glew32.dll │ └── glew32.lib └── vsl │ ├── vsMathLib.cpp │ ├── vsMathLib.h │ ├── vsShaderLib.cpp │ └── vsShaderLib.h ├── images ├── seaxneg.JPG ├── seaxpos.JPG ├── seayneg.JPG ├── seaypos.JPG ├── seazneg.JPG ├── seazpos.JPG ├── tiles.jpg ├── xneg.jpg ├── xpos.jpg ├── ypos.jpg ├── zneg.jpg └── zpos.jpg ├── packages.config ├── packages ├── nupengl.core.0.1.0.1 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── default-propertiesui.xml │ │ │ ├── docs │ │ │ │ └── license.txt │ │ │ ├── include │ │ │ │ ├── GL │ │ │ │ │ ├── freeglut.h │ │ │ │ │ ├── freeglut_ext.h │ │ │ │ │ ├── freeglut_std.h │ │ │ │ │ ├── glew.h │ │ │ │ │ ├── glut.h │ │ │ │ │ ├── glxew.h │ │ │ │ │ └── wglew.h │ │ │ │ └── GLFW │ │ │ │ │ ├── glfw3.h │ │ │ │ │ └── glfw3native.h │ │ │ ├── lib │ │ │ │ ├── Win32 │ │ │ │ │ ├── freeglut.lib │ │ │ │ │ ├── glew32.lib │ │ │ │ │ └── glfw3dll.lib │ │ │ │ └── x64 │ │ │ │ │ ├── freeglut.lib │ │ │ │ │ ├── glew32.lib │ │ │ │ │ └── glfw3dll.lib │ │ │ └── nupengl.core.targets │ │ └── publisher-info.txt │ └── nupengl.core.0.1.0.1.nupkg ├── nupengl.core.redist.0.1.0.1 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── bin │ │ │ │ ├── Win32 │ │ │ │ │ ├── freeglut.dll │ │ │ │ │ ├── glew32.dll │ │ │ │ │ ├── glewinfo.exe │ │ │ │ │ ├── glfw3.dll │ │ │ │ │ └── visualinfo.exe │ │ │ │ └── x64 │ │ │ │ │ ├── freeglut.dll │ │ │ │ │ ├── glew32.dll │ │ │ │ │ ├── glewinfo.exe │ │ │ │ │ ├── glfw3.dll │ │ │ │ │ └── visualinfo.exe │ │ │ ├── default-propertiesui.xml │ │ │ └── nupengl.core.redist.targets │ │ └── publisher-info.txt │ └── nupengl.core.redist.0.1.0.1.nupkg ├── sfml-graphics.2.4.2.0 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── default-propertiesui.xml │ │ │ ├── lib │ │ │ │ ├── Win32 │ │ │ │ │ ├── v110 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ │ │ └── v140 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ │ └── x64 │ │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ │ │ └── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-graphics-d.lib │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-graphics-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ ├── dynamic │ │ │ │ │ └── sfml-graphics.lib │ │ │ │ │ └── static │ │ │ │ │ └── sfml-graphics-s.lib │ │ │ ├── sfml-graphics-propertiesui-ac675c79-772c-404f-9a30-4edb6aa1b9c6.xml │ │ │ └── sfml-graphics.targets │ │ └── publisher-info.txt │ └── sfml-graphics.2.4.2.0.nupkg ├── sfml-graphics.redist.2.4.2.0 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── bin │ │ │ │ ├── Win32 │ │ │ │ │ ├── v110 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ │ │ ├── v120 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ │ │ └── v140 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ │ └── x64 │ │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ │ │ └── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-graphics-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-graphics-2.dll │ │ │ ├── default-propertiesui.xml │ │ │ └── sfml-graphics.redist.targets │ │ └── publisher-info.txt │ └── sfml-graphics.redist.2.4.2.0.nupkg ├── sfml-system.2.4.2.0 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── default-propertiesui.xml │ │ │ ├── include │ │ │ │ ├── SFML │ │ │ │ │ ├── Audio.hpp │ │ │ │ │ ├── Audio │ │ │ │ │ │ ├── AlResource.hpp │ │ │ │ │ │ ├── Export.hpp │ │ │ │ │ │ ├── InputSoundFile.hpp │ │ │ │ │ │ ├── Listener.hpp │ │ │ │ │ │ ├── Music.hpp │ │ │ │ │ │ ├── OutputSoundFile.hpp │ │ │ │ │ │ ├── Sound.hpp │ │ │ │ │ │ ├── SoundBuffer.hpp │ │ │ │ │ │ ├── SoundBufferRecorder.hpp │ │ │ │ │ │ ├── SoundFileFactory.hpp │ │ │ │ │ │ ├── SoundFileFactory.inl │ │ │ │ │ │ ├── SoundFileReader.hpp │ │ │ │ │ │ ├── SoundFileWriter.hpp │ │ │ │ │ │ ├── SoundRecorder.hpp │ │ │ │ │ │ ├── SoundSource.hpp │ │ │ │ │ │ └── SoundStream.hpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── Graphics.hpp │ │ │ │ │ ├── Graphics │ │ │ │ │ │ ├── BlendMode.hpp │ │ │ │ │ │ ├── CircleShape.hpp │ │ │ │ │ │ ├── Color.hpp │ │ │ │ │ │ ├── ConvexShape.hpp │ │ │ │ │ │ ├── Drawable.hpp │ │ │ │ │ │ ├── Export.hpp │ │ │ │ │ │ ├── Font.hpp │ │ │ │ │ │ ├── Glsl.hpp │ │ │ │ │ │ ├── Glsl.inl │ │ │ │ │ │ ├── Glyph.hpp │ │ │ │ │ │ ├── Image.hpp │ │ │ │ │ │ ├── PrimitiveType.hpp │ │ │ │ │ │ ├── Rect.hpp │ │ │ │ │ │ ├── Rect.inl │ │ │ │ │ │ ├── RectangleShape.hpp │ │ │ │ │ │ ├── RenderStates.hpp │ │ │ │ │ │ ├── RenderTarget.hpp │ │ │ │ │ │ ├── RenderTexture.hpp │ │ │ │ │ │ ├── RenderWindow.hpp │ │ │ │ │ │ ├── Shader.hpp │ │ │ │ │ │ ├── Shape.hpp │ │ │ │ │ │ ├── Sprite.hpp │ │ │ │ │ │ ├── Text.hpp │ │ │ │ │ │ ├── Texture.hpp │ │ │ │ │ │ ├── Transform.hpp │ │ │ │ │ │ ├── Transformable.hpp │ │ │ │ │ │ ├── Vertex.hpp │ │ │ │ │ │ ├── VertexArray.hpp │ │ │ │ │ │ └── View.hpp │ │ │ │ │ ├── Main.hpp │ │ │ │ │ ├── Network.hpp │ │ │ │ │ ├── Network │ │ │ │ │ │ ├── Export.hpp │ │ │ │ │ │ ├── Ftp.hpp │ │ │ │ │ │ ├── Http.hpp │ │ │ │ │ │ ├── IpAddress.hpp │ │ │ │ │ │ ├── Packet.hpp │ │ │ │ │ │ ├── Socket.hpp │ │ │ │ │ │ ├── SocketHandle.hpp │ │ │ │ │ │ ├── SocketSelector.hpp │ │ │ │ │ │ ├── TcpListener.hpp │ │ │ │ │ │ ├── TcpSocket.hpp │ │ │ │ │ │ └── UdpSocket.hpp │ │ │ │ │ ├── OpenGL.hpp │ │ │ │ │ ├── System.hpp │ │ │ │ │ ├── System │ │ │ │ │ │ ├── Clock.hpp │ │ │ │ │ │ ├── Err.hpp │ │ │ │ │ │ ├── Export.hpp │ │ │ │ │ │ ├── FileInputStream.hpp │ │ │ │ │ │ ├── InputStream.hpp │ │ │ │ │ │ ├── Lock.hpp │ │ │ │ │ │ ├── MemoryInputStream.hpp │ │ │ │ │ │ ├── Mutex.hpp │ │ │ │ │ │ ├── NativeActivity.hpp │ │ │ │ │ │ ├── NonCopyable.hpp │ │ │ │ │ │ ├── Sleep.hpp │ │ │ │ │ │ ├── String.hpp │ │ │ │ │ │ ├── String.inl │ │ │ │ │ │ ├── Thread.hpp │ │ │ │ │ │ ├── Thread.inl │ │ │ │ │ │ ├── ThreadLocal.hpp │ │ │ │ │ │ ├── ThreadLocalPtr.hpp │ │ │ │ │ │ ├── ThreadLocalPtr.inl │ │ │ │ │ │ ├── Time.hpp │ │ │ │ │ │ ├── Utf.hpp │ │ │ │ │ │ ├── Utf.inl │ │ │ │ │ │ ├── Vector2.hpp │ │ │ │ │ │ ├── Vector2.inl │ │ │ │ │ │ ├── Vector3.hpp │ │ │ │ │ │ └── Vector3.inl │ │ │ │ │ ├── Window.hpp │ │ │ │ │ └── Window │ │ │ │ │ │ ├── Context.hpp │ │ │ │ │ │ ├── ContextSettings.hpp │ │ │ │ │ │ ├── Event.hpp │ │ │ │ │ │ ├── Export.hpp │ │ │ │ │ │ ├── GlResource.hpp │ │ │ │ │ │ ├── Joystick.hpp │ │ │ │ │ │ ├── Keyboard.hpp │ │ │ │ │ │ ├── Mouse.hpp │ │ │ │ │ │ ├── Sensor.hpp │ │ │ │ │ │ ├── Touch.hpp │ │ │ │ │ │ ├── VideoMode.hpp │ │ │ │ │ │ ├── Window.hpp │ │ │ │ │ │ ├── WindowHandle.hpp │ │ │ │ │ │ └── WindowStyle.hpp │ │ │ │ └── delete.me │ │ │ ├── lib │ │ │ │ ├── Win32 │ │ │ │ │ ├── flac.lib │ │ │ │ │ ├── freetype.lib │ │ │ │ │ ├── jpeg.lib │ │ │ │ │ ├── ogg.lib │ │ │ │ │ ├── openal32.lib │ │ │ │ │ ├── v110 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── v140 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ └── vorbisfile.lib │ │ │ │ └── x64 │ │ │ │ │ ├── flac.lib │ │ │ │ │ ├── freetype.lib │ │ │ │ │ ├── jpeg.lib │ │ │ │ │ ├── ogg.lib │ │ │ │ │ ├── openal32.lib │ │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-system-d.lib │ │ │ │ │ │ ├── sfml-main-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-system-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-system.lib │ │ │ │ │ │ ├── sfml-main.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-system-s.lib │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ └── vorbisfile.lib │ │ │ ├── sfml-system-propertiesui-42456d24-88cf-4b52-ab4c-2f0567019ea3.xml │ │ │ └── sfml-system.targets │ │ └── publisher-info.txt │ └── sfml-system.2.4.2.0.nupkg ├── sfml-system.redist.2.4.2.0 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── bin │ │ │ │ ├── Win32 │ │ │ │ │ ├── openal32.dll │ │ │ │ │ ├── v110 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-system-2.dll │ │ │ │ │ ├── v120 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-system-2.dll │ │ │ │ │ └── v140 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-system-2.dll │ │ │ │ └── x64 │ │ │ │ │ ├── openal32.dll │ │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-system-2.dll │ │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-system-2.dll │ │ │ │ │ └── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-system-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-system-2.dll │ │ │ ├── default-propertiesui.xml │ │ │ └── sfml-system.redist.targets │ │ └── publisher-info.txt │ └── sfml-system.redist.2.4.2.0.nupkg ├── sfml-window.2.4.2.0 │ ├── build │ │ ├── configurations.autopkg │ │ ├── native │ │ │ ├── default-propertiesui.xml │ │ │ ├── lib │ │ │ │ ├── Win32 │ │ │ │ │ ├── v110 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-window-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-window-s.lib │ │ │ │ │ └── v140 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-window-s.lib │ │ │ │ └── x64 │ │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-window-s.lib │ │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-window-s.lib │ │ │ │ │ └── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ ├── dynamic │ │ │ │ │ │ └── sfml-window-d.lib │ │ │ │ │ └── static │ │ │ │ │ │ └── sfml-window-s-d.lib │ │ │ │ │ └── Release │ │ │ │ │ ├── dynamic │ │ │ │ │ └── sfml-window.lib │ │ │ │ │ └── static │ │ │ │ │ └── sfml-window-s.lib │ │ │ ├── sfml-window-propertiesui-54ff1a4a-80fd-4631-ab43-c48896c58517.xml │ │ │ └── sfml-window.targets │ │ └── publisher-info.txt │ └── sfml-window.2.4.2.0.nupkg └── sfml-window.redist.2.4.2.0 │ ├── build │ ├── configurations.autopkg │ ├── native │ │ ├── bin │ │ │ ├── Win32 │ │ │ │ ├── v110 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-window-2.dll │ │ │ │ ├── v120 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-window-2.dll │ │ │ │ └── v140 │ │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-window-2.dll │ │ │ └── x64 │ │ │ │ ├── v110 │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-window-2.dll │ │ │ │ ├── v120 │ │ │ │ ├── Debug │ │ │ │ │ └── dynamic │ │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ └── Release │ │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-window-2.dll │ │ │ │ └── v140 │ │ │ │ ├── Debug │ │ │ │ └── dynamic │ │ │ │ │ └── sfml-window-d-2.dll │ │ │ │ └── Release │ │ │ │ └── dynamic │ │ │ │ └── sfml-window-2.dll │ │ ├── default-propertiesui.xml │ │ └── sfml-window.redist.targets │ └── publisher-info.txt │ └── sfml-window.redist.2.4.2.0.nupkg ├── png ├── shaders ├── RendererCaustics.frag ├── RendererCaustics.vert ├── RendererCubeBox.frag ├── RendererCubeBox.vert ├── RendererWater.frag ├── RendererWater.vert ├── WaterDropShader.frag ├── WaterNormalShader.frag ├── WaterUpdateShader.frag └── WaterVertex.vert └── src ├── Cubemap.cpp ├── Cubemap.h ├── GLHeader.h ├── Mesh.cpp ├── Mesh.h ├── Raytracer.cpp ├── Raytracer.h ├── Renderer.cpp ├── Renderer.h ├── Shader.cpp ├── Shader.h ├── StdHeader.h ├── Texture.cpp ├── Texture.h ├── Water.cpp ├── Water.h ├── main.cpp ├── vec3.cpp └── vec3.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/.gitignore -------------------------------------------------------------------------------- /.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/README.md -------------------------------------------------------------------------------- /Release/Cubemap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Cubemap.obj -------------------------------------------------------------------------------- /Release/Mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Mesh.obj -------------------------------------------------------------------------------- /Release/Raytracer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Raytracer.obj -------------------------------------------------------------------------------- /Release/Renderer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Renderer.obj -------------------------------------------------------------------------------- /Release/SOIL.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/SOIL.obj -------------------------------------------------------------------------------- /Release/Shader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Shader.obj -------------------------------------------------------------------------------- /Release/Texture.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Texture.obj -------------------------------------------------------------------------------- /Release/Water.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.exe -------------------------------------------------------------------------------- /Release/Water.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.iobj -------------------------------------------------------------------------------- /Release/Water.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.ipdb -------------------------------------------------------------------------------- /Release/Water.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.log -------------------------------------------------------------------------------- /Release/Water.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.obj -------------------------------------------------------------------------------- /Release/Water.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.pdb -------------------------------------------------------------------------------- /Release/Water.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Release/Water.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Release/Water.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Release/Water.tlog/Water.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/Water.lastbuildstate -------------------------------------------------------------------------------- /Release/Water.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Release/Water.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Release/Water.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/Water.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Release/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/freeglut.dll -------------------------------------------------------------------------------- /Release/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/glew32.dll -------------------------------------------------------------------------------- /Release/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/glewinfo.exe -------------------------------------------------------------------------------- /Release/glewinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/glewinfo.txt -------------------------------------------------------------------------------- /Release/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/glfw3.dll -------------------------------------------------------------------------------- /Release/image_DXT.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/image_DXT.obj -------------------------------------------------------------------------------- /Release/image_helper.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/image_helper.obj -------------------------------------------------------------------------------- /Release/images/shaders/RendererCaustics.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererCaustics.frag -------------------------------------------------------------------------------- /Release/images/shaders/RendererCaustics.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererCaustics.vert -------------------------------------------------------------------------------- /Release/images/shaders/RendererCubeBox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererCubeBox.frag -------------------------------------------------------------------------------- /Release/images/shaders/RendererCubeBox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererCubeBox.vert -------------------------------------------------------------------------------- /Release/images/shaders/RendererWater.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererWater.frag -------------------------------------------------------------------------------- /Release/images/shaders/RendererWater.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/RendererWater.vert -------------------------------------------------------------------------------- /Release/images/shaders/WaterDropShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/WaterDropShader.frag -------------------------------------------------------------------------------- /Release/images/shaders/WaterNormalShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/WaterNormalShader.frag -------------------------------------------------------------------------------- /Release/images/shaders/WaterUpdateShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/WaterUpdateShader.frag -------------------------------------------------------------------------------- /Release/images/shaders/WaterVertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/shaders/WaterVertex.vert -------------------------------------------------------------------------------- /Release/images/tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/tiles.jpg -------------------------------------------------------------------------------- /Release/images/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/tiles.png -------------------------------------------------------------------------------- /Release/images/xneg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/xneg.jpg -------------------------------------------------------------------------------- /Release/images/xpos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/xpos.jpg -------------------------------------------------------------------------------- /Release/images/ypos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/ypos.jpg -------------------------------------------------------------------------------- /Release/images/zneg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/zneg.jpg -------------------------------------------------------------------------------- /Release/images/zpos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/images/zpos.jpg -------------------------------------------------------------------------------- /Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/main.obj -------------------------------------------------------------------------------- /Release/openal32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/openal32.dll -------------------------------------------------------------------------------- /Release/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/sfml-graphics-2.dll -------------------------------------------------------------------------------- /Release/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/sfml-system-2.dll -------------------------------------------------------------------------------- /Release/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/sfml-window-2.dll -------------------------------------------------------------------------------- /Release/shaders/RendererCaustics.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererCaustics.frag -------------------------------------------------------------------------------- /Release/shaders/RendererCaustics.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererCaustics.vert -------------------------------------------------------------------------------- /Release/shaders/RendererCubeBox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererCubeBox.frag -------------------------------------------------------------------------------- /Release/shaders/RendererCubeBox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererCubeBox.vert -------------------------------------------------------------------------------- /Release/shaders/RendererWater.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererWater.frag -------------------------------------------------------------------------------- /Release/shaders/RendererWater.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/RendererWater.vert -------------------------------------------------------------------------------- /Release/shaders/WaterDropShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/WaterDropShader.frag -------------------------------------------------------------------------------- /Release/shaders/WaterNormalShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/WaterNormalShader.frag -------------------------------------------------------------------------------- /Release/shaders/WaterUpdateShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/WaterUpdateShader.frag -------------------------------------------------------------------------------- /Release/shaders/WaterVertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/shaders/WaterVertex.vert -------------------------------------------------------------------------------- /Release/stb_image_aug.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/stb_image_aug.obj -------------------------------------------------------------------------------- /Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/vc140.pdb -------------------------------------------------------------------------------- /Release/vec3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/vec3.obj -------------------------------------------------------------------------------- /Release/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/visualinfo.exe -------------------------------------------------------------------------------- /Release/vsMathLib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/vsMathLib.obj -------------------------------------------------------------------------------- /Release/vsShaderLib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Release/vsShaderLib.obj -------------------------------------------------------------------------------- /Water.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Water.VC.db -------------------------------------------------------------------------------- /Water.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Water.sln -------------------------------------------------------------------------------- /Water.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Water.v11.suo -------------------------------------------------------------------------------- /Water.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Water.vcxproj -------------------------------------------------------------------------------- /Water.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/Water.vcxproj.filters -------------------------------------------------------------------------------- /external/SOIL/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/SOIL.c -------------------------------------------------------------------------------- /external/SOIL/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/SOIL.h -------------------------------------------------------------------------------- /external/SOIL/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/image_DXT.c -------------------------------------------------------------------------------- /external/SOIL/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/image_DXT.h -------------------------------------------------------------------------------- /external/SOIL/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/image_helper.c -------------------------------------------------------------------------------- /external/SOIL/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/image_helper.h -------------------------------------------------------------------------------- /external/SOIL/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/stb_image_aug.c -------------------------------------------------------------------------------- /external/SOIL/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/stb_image_aug.h -------------------------------------------------------------------------------- /external/SOIL/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/stbi_DDS_aug.h -------------------------------------------------------------------------------- /external/SOIL/stbi_DDS_aug_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/SOIL/stbi_DDS_aug_c.h -------------------------------------------------------------------------------- /external/freeglut-2.8.1/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/freeglut-2.8.1/GL/freeglut.h -------------------------------------------------------------------------------- /external/freeglut-2.8.1/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/freeglut-2.8.1/GL/freeglut_ext.h -------------------------------------------------------------------------------- /external/freeglut-2.8.1/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/freeglut-2.8.1/GL/freeglut_std.h -------------------------------------------------------------------------------- /external/freeglut-2.8.1/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/freeglut-2.8.1/GL/glut.h -------------------------------------------------------------------------------- /external/glew-1.10.0/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/glew-1.10.0/GL/glew.h -------------------------------------------------------------------------------- /external/glew-1.10.0/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/glew-1.10.0/GL/glxew.h -------------------------------------------------------------------------------- /external/glew-1.10.0/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/glew-1.10.0/GL/wglew.h -------------------------------------------------------------------------------- /external/libs/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/libs/freeglut.dll -------------------------------------------------------------------------------- /external/libs/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/libs/freeglut.lib -------------------------------------------------------------------------------- /external/libs/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/libs/glew32.dll -------------------------------------------------------------------------------- /external/libs/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/libs/glew32.lib -------------------------------------------------------------------------------- /external/vsl/vsMathLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/vsl/vsMathLib.cpp -------------------------------------------------------------------------------- /external/vsl/vsMathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/vsl/vsMathLib.h -------------------------------------------------------------------------------- /external/vsl/vsShaderLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/vsl/vsShaderLib.cpp -------------------------------------------------------------------------------- /external/vsl/vsShaderLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/external/vsl/vsShaderLib.h -------------------------------------------------------------------------------- /images/seaxneg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seaxneg.JPG -------------------------------------------------------------------------------- /images/seaxpos.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seaxpos.JPG -------------------------------------------------------------------------------- /images/seayneg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seayneg.JPG -------------------------------------------------------------------------------- /images/seaypos.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seaypos.JPG -------------------------------------------------------------------------------- /images/seazneg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seazneg.JPG -------------------------------------------------------------------------------- /images/seazpos.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/seazpos.JPG -------------------------------------------------------------------------------- /images/tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/tiles.jpg -------------------------------------------------------------------------------- /images/xneg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/xneg.jpg -------------------------------------------------------------------------------- /images/xpos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/xpos.jpg -------------------------------------------------------------------------------- /images/ypos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/ypos.jpg -------------------------------------------------------------------------------- /images/zneg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/zneg.jpg -------------------------------------------------------------------------------- /images/zpos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/images/zpos.jpg -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages.config -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/docs/license.txt -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut_ext.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/freeglut_std.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/glew.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/glut.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/glxew.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GL/wglew.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/Win32/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/Win32/freeglut.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/Win32/glew32.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/Win32/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/Win32/glfw3dll.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/x64/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/x64/freeglut.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/x64/glew32.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/lib/x64/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/lib/x64/glfw3dll.lib -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/native/nupengl.core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/build/native/nupengl.core.targets -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/build/publisher-info.txt: -------------------------------------------------------------------------------- 1 | Package Created: 10/14/2015 4:58:11 PM 2 | CoApp tools version: 1.23.521.0 3 | -------------------------------------------------------------------------------- /packages/nupengl.core.0.1.0.1/nupengl.core.0.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.0.1.0.1/nupengl.core.0.1.0.1.nupkg -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/freeglut.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glew32.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glewinfo.exe -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/glfw3.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/Win32/visualinfo.exe -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/freeglut.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glew32.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glewinfo.exe -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/glfw3.dll -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/bin/x64/visualinfo.exe -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/native/nupengl.core.redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/build/native/nupengl.core.redist.targets -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/build/publisher-info.txt: -------------------------------------------------------------------------------- 1 | Package Created: 10/14/2015 4:58:13 PM 2 | CoApp tools version: 1.23.521.0 3 | -------------------------------------------------------------------------------- /packages/nupengl.core.redist.0.1.0.1/nupengl.core.redist.0.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/nupengl.core.redist.0.1.0.1/nupengl.core.redist.0.1.0.1.nupkg -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-graphics-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-graphics-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-graphics-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-graphics-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-graphics.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-graphics-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-graphics-s.lib -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/sfml-graphics-propertiesui-ac675c79-772c-404f-9a30-4edb6aa1b9c6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/sfml-graphics-propertiesui-ac675c79-772c-404f-9a30-4edb6aa1b9c6.xml -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/native/sfml-graphics.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/native/sfml-graphics.targets -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-graphics.2.4.2.0/sfml-graphics.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.2.4.2.0/sfml-graphics.2.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-graphics-2.dll -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/native/sfml-graphics.redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/native/sfml-graphics.redist.targets -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-graphics.redist.2.4.2.0/sfml-graphics.redist.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-graphics.redist.2.4.2.0/sfml-graphics.redist.2.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/AlResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/AlResource.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Export.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/InputSoundFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/InputSoundFile.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Listener.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Music.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Music.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/OutputSoundFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/OutputSoundFile.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/Sound.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundBuffer.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundBufferRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundBufferRecorder.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileFactory.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileFactory.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileFactory.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileReader.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundFileWriter.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundRecorder.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundSource.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Audio/SoundStream.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Config.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/BlendMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/BlendMode.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/CircleShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/CircleShape.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Color.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/ConvexShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/ConvexShape.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Drawable.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Export.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Font.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glsl.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glsl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glsl.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glyph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Glyph.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Image.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/PrimitiveType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/PrimitiveType.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Rect.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Rect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Rect.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RectangleShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RectangleShape.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderStates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderStates.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderTarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderTarget.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderTexture.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/RenderWindow.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Shader.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Shape.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Sprite.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Text.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Texture.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Transform.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Transformable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Transformable.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/Vertex.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/VertexArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/VertexArray.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Graphics/View.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Main.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Export.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Ftp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Ftp.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Http.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/IpAddress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/IpAddress.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Packet.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/Socket.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/SocketHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/SocketHandle.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/SocketSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/SocketSelector.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/TcpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/TcpListener.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/TcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/TcpSocket.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/UdpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Network/UdpSocket.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/OpenGL.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Clock.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Err.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Err.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Export.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/FileInputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/FileInputStream.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/InputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/InputStream.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Lock.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/MemoryInputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/MemoryInputStream.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Mutex.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/NativeActivity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/NativeActivity.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/NonCopyable.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Sleep.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/String.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/String.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/String.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Thread.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Thread.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Thread.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocal.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocalPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocalPtr.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocalPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/ThreadLocalPtr.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Time.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Utf.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Utf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Utf.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector2.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector2.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector3.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/System/Vector3.inl -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Context.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/ContextSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/ContextSettings.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Event.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Export.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/GlResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/GlResource.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Joystick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Joystick.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Keyboard.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Mouse.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Sensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Sensor.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Touch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Touch.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/VideoMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/VideoMode.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/Window.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/WindowHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/WindowHandle.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/WindowStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/include/SFML/Window/WindowStyle.hpp -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/include/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/flac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/flac.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/freetype.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/jpeg.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/ogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/ogg.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/openal32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/openal32.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbis.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbisenc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbisenc.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/Win32/vorbisfile.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/flac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/flac.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/freetype.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/jpeg.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/ogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/ogg.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/openal32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/openal32.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-system-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-system-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/sfml-main-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/sfml-main-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-system-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-system-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-system.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/sfml-main.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-system-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-system-s.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbis.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbisenc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbisenc.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/lib/x64/vorbisfile.lib -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/sfml-system-propertiesui-42456d24-88cf-4b52-ab4c-2f0567019ea3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/sfml-system-propertiesui-42456d24-88cf-4b52-ab4c-2f0567019ea3.xml -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/native/sfml-system.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/native/sfml-system.targets -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-system.2.4.2.0/sfml-system.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.2.4.2.0/sfml-system.2.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/openal32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/openal32.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/openal32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/openal32.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-system-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-system-2.dll -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/native/sfml-system.redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/native/sfml-system.redist.targets -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-system.redist.2.4.2.0/sfml-system.redist.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-system.redist.2.4.2.0/sfml-system.redist.2.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v110/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v120/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/Win32/v140/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v110/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v120/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-window-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Debug/dynamic/sfml-window-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-window-s-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Debug/static/sfml-window-s-d.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Release/dynamic/sfml-window.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-window-s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/lib/x64/v140/Release/static/sfml-window-s.lib -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/sfml-window-propertiesui-54ff1a4a-80fd-4631-ab43-c48896c58517.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/sfml-window-propertiesui-54ff1a4a-80fd-4631-ab43-c48896c58517.xml -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/native/sfml-window.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/native/sfml-window.targets -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-window.2.4.2.0/sfml-window.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.2.4.2.0/sfml-window.2.4.2.0.nupkg -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/configurations.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/configurations.autopkg -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v110/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v110/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v120/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v120/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v140/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/Win32/v140/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v110/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v110/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v120/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v120/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v140/Debug/dynamic/sfml-window-d-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/bin/x64/v140/Release/dynamic/sfml-window-2.dll -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/default-propertiesui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/default-propertiesui.xml -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/native/sfml-window.redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/native/sfml-window.redist.targets -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/build/publisher-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/build/publisher-info.txt -------------------------------------------------------------------------------- /packages/sfml-window.redist.2.4.2.0/sfml-window.redist.2.4.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/packages/sfml-window.redist.2.4.2.0/sfml-window.redist.2.4.2.0.nupkg -------------------------------------------------------------------------------- /png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/png -------------------------------------------------------------------------------- /shaders/RendererCaustics.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererCaustics.frag -------------------------------------------------------------------------------- /shaders/RendererCaustics.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererCaustics.vert -------------------------------------------------------------------------------- /shaders/RendererCubeBox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererCubeBox.frag -------------------------------------------------------------------------------- /shaders/RendererCubeBox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererCubeBox.vert -------------------------------------------------------------------------------- /shaders/RendererWater.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererWater.frag -------------------------------------------------------------------------------- /shaders/RendererWater.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/RendererWater.vert -------------------------------------------------------------------------------- /shaders/WaterDropShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/WaterDropShader.frag -------------------------------------------------------------------------------- /shaders/WaterNormalShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/WaterNormalShader.frag -------------------------------------------------------------------------------- /shaders/WaterUpdateShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/WaterUpdateShader.frag -------------------------------------------------------------------------------- /shaders/WaterVertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/shaders/WaterVertex.vert -------------------------------------------------------------------------------- /src/Cubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Cubemap.cpp -------------------------------------------------------------------------------- /src/Cubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Cubemap.h -------------------------------------------------------------------------------- /src/GLHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/GLHeader.h -------------------------------------------------------------------------------- /src/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Mesh.cpp -------------------------------------------------------------------------------- /src/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Mesh.h -------------------------------------------------------------------------------- /src/Raytracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Raytracer.cpp -------------------------------------------------------------------------------- /src/Raytracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Raytracer.h -------------------------------------------------------------------------------- /src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Renderer.cpp -------------------------------------------------------------------------------- /src/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Renderer.h -------------------------------------------------------------------------------- /src/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Shader.cpp -------------------------------------------------------------------------------- /src/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Shader.h -------------------------------------------------------------------------------- /src/StdHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/StdHeader.h -------------------------------------------------------------------------------- /src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Texture.cpp -------------------------------------------------------------------------------- /src/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Texture.h -------------------------------------------------------------------------------- /src/Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Water.cpp -------------------------------------------------------------------------------- /src/Water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/Water.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/vec3.cpp -------------------------------------------------------------------------------- /src/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realkushagrakhare/ProjectWater/HEAD/src/vec3.h --------------------------------------------------------------------------------