Do I use a different import statement at the start of my file?
Normally I would structure a file like this:
import pygame
pygame.init()
game_code(game_window, game_loop, event_handler)
and that works well enough.
With the ce fork would I instead structure it like:
import pygame-ce
pygame-ce.init()
game_code(game_window, game_loop, event_handler)
I am not familiar with how forks of a program or library work. I know it has something to do with Github, but I have no idea how Github works. I have never used it.