From 1726faf94b464934353f68654348378fc9750620 Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Tue, 1 Jul 2025 08:00:23 +0200 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- utils/utils.py | 5 ++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f3db9a7..34a037f 100644 --- a/README.md +++ b/README.md @@ -1 +1,9 @@ -Game of life recreated with Python and the Arcade and pyglet modules. \ No newline at end of file +This is a Conway's Game Of life clone created using Python, Arcade & Numpy. + +Features: +- Really fast because of Numpy, using vectorized operations +- .rle, Life 1.05, Life 1.06 loading support +- .rle export support +- Discord RPC +- Basic Controller Support +- GPLv3 License, so you can use my code in your open source project! \ No newline at end of file diff --git a/utils/utils.py b/utils/utils.py index 615053c..d45f738 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -1,8 +1,7 @@ import logging, arcade, arcade.gui, sys, traceback from utils.constants import menu_background_color - -import pyglet.info, pyglet.event +import pyglet def dump_platform(): import platform @@ -87,4 +86,4 @@ class FakePyPresence(): def update(self, *args, **kwargs): ... def close(self, *args, **kwargs): - ... + ... \ No newline at end of file