Metadata-Version: 2.4
Name: pygame_updater
Version: 1.0.1
Summary: 2D game development helper library for pygame
Author: Oleksii Laziuta
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pygame
Dynamic: license-file

# Pygame Updater

2D game development library for pygame.

## Features

- Physics
- Collision detection
- A* Pathfinding
- Jump Point Search
- Flow Field Navigation
- Tilemaps
- Animation System

## Installation

pip install pygame-updater

## Example

from pygame_updater.physics.physics import PhysicsForces

physics = PhysicsForces()

velocity = [0, 0]
physics.gravity(velocity)
