├── .gitattributes ├── .gitignore ├── Platformer.sln ├── SFMLTeach ├── SFMLTeach.exe ├── SFMLTeach.vcxproj ├── SFMLTeach.vcxproj.filters ├── arial.ttf ├── level.cpp ├── level.h ├── main.cpp ├── platformer.tmx ├── test.tmx ├── tileset.png ├── tinystr.cpp ├── tinystr.h ├── tinyxml.cpp ├── tinyxml.h ├── tinyxmlerror.cpp └── tinyxmlparser.cpp ├── dll ├── libsndfile-1.dll ├── openal32.dll ├── sfml-audio-2.dll ├── sfml-audio-d-2.dll ├── sfml-graphics-2.dll ├── sfml-graphics-d-2.dll ├── sfml-network-2.dll ├── sfml-network-d-2.dll ├── sfml-system-2.dll ├── sfml-system-d-2.dll ├── sfml-window-2.dll └── sfml-window-d-2.dll ├── includies ├── Box2D │ ├── Box2D.h │ ├── Box2DConfig.cmake │ ├── CMakeLists.txt │ ├── Collision │ │ ├── Shapes │ │ │ ├── b2ChainShape.cpp │ │ │ ├── b2ChainShape.h │ │ │ ├── b2CircleShape.cpp │ │ │ ├── b2CircleShape.h │ │ │ ├── b2EdgeShape.cpp │ │ │ ├── b2EdgeShape.h │ │ │ ├── b2PolygonShape.cpp │ │ │ ├── b2PolygonShape.h │ │ │ └── b2Shape.h │ │ ├── b2BroadPhase.cpp │ │ ├── b2BroadPhase.h │ │ ├── b2CollideCircle.cpp │ │ ├── b2CollideEdge.cpp │ │ ├── b2CollidePolygon.cpp │ │ ├── b2Collision.cpp │ │ ├── b2Collision.h │ │ ├── b2Distance.cpp │ │ ├── b2Distance.h │ │ ├── b2DynamicTree.cpp │ │ ├── b2DynamicTree.h │ │ ├── b2TimeOfImpact.cpp │ │ └── b2TimeOfImpact.h │ ├── Common │ │ ├── b2BlockAllocator.cpp │ │ ├── b2BlockAllocator.h │ │ ├── b2Draw.cpp │ │ ├── b2Draw.h │ │ ├── b2GrowableStack.h │ │ ├── b2Math.cpp │ │ ├── b2Math.h │ │ ├── b2Settings.cpp │ │ ├── b2Settings.h │ │ ├── b2StackAllocator.cpp │ │ ├── b2StackAllocator.h │ │ ├── b2Timer.cpp │ │ └── b2Timer.h │ ├── Dynamics │ │ ├── Contacts │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ ├── b2ChainAndCircleContact.h │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ ├── b2CircleContact.cpp │ │ │ ├── b2CircleContact.h │ │ │ ├── b2Contact.cpp │ │ │ ├── b2Contact.h │ │ │ ├── b2ContactSolver.cpp │ │ │ ├── b2ContactSolver.h │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ ├── b2PolygonContact.cpp │ │ │ └── b2PolygonContact.h │ │ ├── Joints │ │ │ ├── b2DistanceJoint.cpp │ │ │ ├── b2DistanceJoint.h │ │ │ ├── b2FrictionJoint.cpp │ │ │ ├── b2FrictionJoint.h │ │ │ ├── b2GearJoint.cpp │ │ │ ├── b2GearJoint.h │ │ │ ├── b2Joint.cpp │ │ │ ├── b2Joint.h │ │ │ ├── b2MouseJoint.cpp │ │ │ ├── b2MouseJoint.h │ │ │ ├── b2PrismaticJoint.cpp │ │ │ ├── b2PrismaticJoint.h │ │ │ ├── b2PulleyJoint.cpp │ │ │ ├── b2PulleyJoint.h │ │ │ ├── b2RevoluteJoint.cpp │ │ │ ├── b2RevoluteJoint.h │ │ │ ├── b2RopeJoint.cpp │ │ │ ├── b2RopeJoint.h │ │ │ ├── b2WeldJoint.cpp │ │ │ ├── b2WeldJoint.h │ │ │ ├── b2WheelJoint.cpp │ │ │ └── b2WheelJoint.h │ │ ├── b2Body.cpp │ │ ├── b2Body.h │ │ ├── b2ContactManager.cpp │ │ ├── b2ContactManager.h │ │ ├── b2Fixture.cpp │ │ ├── b2Fixture.h │ │ ├── b2Island.cpp │ │ ├── b2Island.h │ │ ├── b2TimeStep.h │ │ ├── b2World.cpp │ │ ├── b2World.h │ │ ├── b2WorldCallbacks.cpp │ │ └── b2WorldCallbacks.h │ └── Rope │ │ ├── b2Rope.cpp │ │ └── b2Rope.h └── SFML │ ├── Audio.hpp │ ├── Audio │ ├── Export.hpp │ ├── Listener.hpp │ ├── Music.hpp │ ├── Sound.hpp │ ├── SoundBuffer.hpp │ ├── SoundBufferRecorder.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 │ ├── 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 │ ├── 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 │ ├── InputStream.hpp │ ├── Lock.hpp │ ├── Mutex.hpp │ ├── NonCopyable.hpp │ ├── Sleep.hpp │ ├── String.hpp │ ├── 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 │ ├── VideoMode.hpp │ ├── Window.hpp │ ├── WindowHandle.hpp │ └── WindowStyle.hpp └── libs ├── Box2D.lib ├── sfml-audio.lib ├── sfml-graphics.lib ├── sfml-main.lib ├── sfml-network.lib ├── sfml-system.lib └── sfml-window.lib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/.gitignore -------------------------------------------------------------------------------- /Platformer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/Platformer.sln -------------------------------------------------------------------------------- /SFMLTeach/SFMLTeach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/SFMLTeach.exe -------------------------------------------------------------------------------- /SFMLTeach/SFMLTeach.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/SFMLTeach.vcxproj -------------------------------------------------------------------------------- /SFMLTeach/SFMLTeach.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/SFMLTeach.vcxproj.filters -------------------------------------------------------------------------------- /SFMLTeach/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/arial.ttf -------------------------------------------------------------------------------- /SFMLTeach/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/level.cpp -------------------------------------------------------------------------------- /SFMLTeach/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/level.h -------------------------------------------------------------------------------- /SFMLTeach/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/main.cpp -------------------------------------------------------------------------------- /SFMLTeach/platformer.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/platformer.tmx -------------------------------------------------------------------------------- /SFMLTeach/test.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/test.tmx -------------------------------------------------------------------------------- /SFMLTeach/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tileset.png -------------------------------------------------------------------------------- /SFMLTeach/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinystr.cpp -------------------------------------------------------------------------------- /SFMLTeach/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinystr.h -------------------------------------------------------------------------------- /SFMLTeach/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinyxml.cpp -------------------------------------------------------------------------------- /SFMLTeach/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinyxml.h -------------------------------------------------------------------------------- /SFMLTeach/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinyxmlerror.cpp -------------------------------------------------------------------------------- /SFMLTeach/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/SFMLTeach/tinyxmlparser.cpp -------------------------------------------------------------------------------- /dll/libsndfile-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/libsndfile-1.dll -------------------------------------------------------------------------------- /dll/openal32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/openal32.dll -------------------------------------------------------------------------------- /dll/sfml-audio-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-audio-2.dll -------------------------------------------------------------------------------- /dll/sfml-audio-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-audio-d-2.dll -------------------------------------------------------------------------------- /dll/sfml-graphics-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-graphics-2.dll -------------------------------------------------------------------------------- /dll/sfml-graphics-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-graphics-d-2.dll -------------------------------------------------------------------------------- /dll/sfml-network-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-network-2.dll -------------------------------------------------------------------------------- /dll/sfml-network-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-network-d-2.dll -------------------------------------------------------------------------------- /dll/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-system-2.dll -------------------------------------------------------------------------------- /dll/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-system-d-2.dll -------------------------------------------------------------------------------- /dll/sfml-window-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-window-2.dll -------------------------------------------------------------------------------- /dll/sfml-window-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/dll/sfml-window-d-2.dll -------------------------------------------------------------------------------- /includies/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Box2D.h -------------------------------------------------------------------------------- /includies/Box2D/Box2DConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Box2DConfig.cmake -------------------------------------------------------------------------------- /includies/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2ChainShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2ChainShape.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2ChainShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2ChainShape.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2CircleShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2CircleShape.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2CircleShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2CircleShape.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2EdgeShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2EdgeShape.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2EdgeShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2EdgeShape.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2PolygonShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2PolygonShape.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2PolygonShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2PolygonShape.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/Shapes/b2Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/Shapes/b2Shape.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2BroadPhase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2BroadPhase.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2BroadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2BroadPhase.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2CollideCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2CollideCircle.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2CollideEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2CollideEdge.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2CollidePolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2CollidePolygon.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2Collision.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2Collision.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2Distance.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2Distance.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2DynamicTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2DynamicTree.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2DynamicTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2DynamicTree.h -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2TimeOfImpact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2TimeOfImpact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Collision/b2TimeOfImpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Collision/b2TimeOfImpact.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2BlockAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2BlockAllocator.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2BlockAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2BlockAllocator.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2GrowableStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2GrowableStack.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Settings.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2StackAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2StackAllocator.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2StackAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2StackAllocator.h -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /includies/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2CircleContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2CircleContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2CircleContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2CircleContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2Contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2Contact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2Contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2Contact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ContactSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ContactSolver.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2ContactSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2ContactSolver.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2PolygonContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2PolygonContact.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Contacts/b2PolygonContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Contacts/b2PolygonContact.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2DistanceJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2DistanceJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2DistanceJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2DistanceJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2FrictionJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2FrictionJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2FrictionJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2FrictionJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2GearJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2GearJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2GearJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2GearJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2Joint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2Joint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2MouseJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2MouseJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2MouseJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2MouseJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2PrismaticJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2PrismaticJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2PulleyJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2PulleyJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2PulleyJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2PulleyJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2RevoluteJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2RevoluteJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2RopeJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2RopeJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2RopeJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2RopeJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2WeldJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2WeldJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2WeldJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2WeldJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2WheelJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2WheelJoint.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/Joints/b2WheelJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/Joints/b2WheelJoint.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2ContactManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2ContactManager.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2ContactManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2ContactManager.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2WorldCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2WorldCallbacks.cpp -------------------------------------------------------------------------------- /includies/Box2D/Dynamics/b2WorldCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Dynamics/b2WorldCallbacks.h -------------------------------------------------------------------------------- /includies/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /includies/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /includies/SFML/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/Export.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/Listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/Listener.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/Music.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/Music.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/Sound.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/SoundBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/SoundBuffer.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/SoundBufferRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/SoundBufferRecorder.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/SoundRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/SoundRecorder.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/SoundSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/SoundSource.hpp -------------------------------------------------------------------------------- /includies/SFML/Audio/SoundStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Audio/SoundStream.hpp -------------------------------------------------------------------------------- /includies/SFML/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Config.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/BlendMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/BlendMode.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/CircleShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/CircleShape.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Color.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/ConvexShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/ConvexShape.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Drawable.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Export.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Font.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Glyph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Glyph.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Image.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/PrimitiveType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/PrimitiveType.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Rect.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Rect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Rect.inl -------------------------------------------------------------------------------- /includies/SFML/Graphics/RectangleShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/RectangleShape.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/RenderStates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/RenderStates.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/RenderTarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/RenderTarget.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/RenderTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/RenderTexture.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/RenderWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/RenderWindow.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Shader.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Shape.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Sprite.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Text.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Texture.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Transform.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Transformable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Transformable.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/Vertex.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/VertexArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/VertexArray.hpp -------------------------------------------------------------------------------- /includies/SFML/Graphics/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Graphics/View.hpp -------------------------------------------------------------------------------- /includies/SFML/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/Export.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/Ftp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/Ftp.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/Http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/Http.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/IpAddress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/IpAddress.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/Packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/Packet.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/Socket.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/SocketHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/SocketHandle.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/SocketSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/SocketSelector.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/TcpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/TcpListener.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/TcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/TcpSocket.hpp -------------------------------------------------------------------------------- /includies/SFML/Network/UdpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Network/UdpSocket.hpp -------------------------------------------------------------------------------- /includies/SFML/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/OpenGL.hpp -------------------------------------------------------------------------------- /includies/SFML/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Clock.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Err.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Err.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Export.hpp -------------------------------------------------------------------------------- /includies/SFML/System/InputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/InputStream.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Lock.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Mutex.hpp -------------------------------------------------------------------------------- /includies/SFML/System/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/NonCopyable.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Sleep.hpp -------------------------------------------------------------------------------- /includies/SFML/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/String.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Thread.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Thread.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Thread.inl -------------------------------------------------------------------------------- /includies/SFML/System/ThreadLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/ThreadLocal.hpp -------------------------------------------------------------------------------- /includies/SFML/System/ThreadLocalPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/ThreadLocalPtr.hpp -------------------------------------------------------------------------------- /includies/SFML/System/ThreadLocalPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/ThreadLocalPtr.inl -------------------------------------------------------------------------------- /includies/SFML/System/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Time.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Utf.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Utf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Utf.inl -------------------------------------------------------------------------------- /includies/SFML/System/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Vector2.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Vector2.inl -------------------------------------------------------------------------------- /includies/SFML/System/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Vector3.hpp -------------------------------------------------------------------------------- /includies/SFML/System/Vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/System/Vector3.inl -------------------------------------------------------------------------------- /includies/SFML/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Context.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/ContextSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/ContextSettings.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Event.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Export.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/GlResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/GlResource.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Joystick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Joystick.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Keyboard.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Mouse.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/VideoMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/VideoMode.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/Window.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/WindowHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/WindowHandle.hpp -------------------------------------------------------------------------------- /includies/SFML/Window/WindowStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/includies/SFML/Window/WindowStyle.hpp -------------------------------------------------------------------------------- /libs/Box2D.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/Box2D.lib -------------------------------------------------------------------------------- /libs/sfml-audio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-audio.lib -------------------------------------------------------------------------------- /libs/sfml-graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-graphics.lib -------------------------------------------------------------------------------- /libs/sfml-main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-main.lib -------------------------------------------------------------------------------- /libs/sfml-network.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-network.lib -------------------------------------------------------------------------------- /libs/sfml-system.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-system.lib -------------------------------------------------------------------------------- /libs/sfml-window.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izaron/Platformer/HEAD/libs/sfml-window.lib --------------------------------------------------------------------------------