mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-09 00:05:16 -06:00
organize imports, less of a clusterfuck
This commit is contained in:
@@ -3,10 +3,10 @@ main.py
|
|||||||
The main class used to load the game.
|
The main class used to load the game.
|
||||||
Holds the main game window, as well as manages basic functions for organizing the game.
|
Holds the main game window, as well as manages basic functions for organizing the game.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import collections
|
import collections
|
||||||
import random
|
import random
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import arcade
|
import arcade
|
||||||
import math
|
import math
|
||||||
|
|
||||||
|
|||||||
@@ -7,12 +7,10 @@ Pathfinding will also depend on objects here, and is thus integral to it's funct
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
import arcade
|
import arcade
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
from itertools import chain
|
from itertools import chain
|
||||||
|
|
||||||
from config import Config
|
from config import Config
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user