Metadata-Version: 2.1
Name: pygame-truly-centered-button
Version: 0.7
Summary: A Pygame button library that fixes text-centering
Home-page: https://github.com/mchen610/pygame-truly-centered-button
Author: Melvin Chen
Author-email: melvinchen610@gmail.com
Description-Content-Type: text/markdown

![Pygame](https://www.pygame.org/docs/_images/pygame_logo.png)

# TRULY CENTERED BUTTON CLASS
**Sick and tired of Pygame's uncentered text on your buttons? Look no further!**

`my_button = Button(params)`

## Required parameters
- **screen**: `pygame.Surface`
- **text**: `str`
- **COLOR**: `tuple` `(r, g, b)`
- **center**: `tuple` `(x, y)`
- **dim**: `tuple` `(w, h)`

## Optional parameters
- **thickness**: `int` `(default = 1)`
- **radius**: `int` `(default = -1)`
- **font_size**: `int` `(default = w*0.9)`

## Additional Attributes
- **real_rect**: Actual surrounding border seen on screen
- **font_rect**: Invisible border that wraps the text
- **screen_color**: Screen color behind the button

## Methods
- **is_hovered()**: Checks if button is hovered (does not update visual state)
- **check_clicked()**: Updates visual state of button based on user mouse event
