-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenoTiledMap.py
36 lines (24 loc) · 947 Bytes
/
enoTiledMap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Tiled map support library
# Brygg Ullmer, Clemson University
# Begun 2023-03-30
# SPDX-FileCopyrightText: © 2023 Brygg Ullmer, Clemson University
# SPDX-License-Identifier: LGPL3
# This work supported in part by NSF "Enodia" MRI CNS-1828611
#https://pillow.readthedocs.io/en/stable/reference/Image.html
from enoTiledImg import *
import os, sys, math
import yaml, PIL, pygame
from pgzero.builtins import Actor, animate, keyboard
from PIL import Image
from queue import *
from datetime import *
#########################################################################
############################## Enodia tiled image #######################
class enoTiledMap(enoTiledImg):
############################## constructor ##############################
def __init__(self):
super().__init__(x)
############################## draw ##############################
def draw(self, screen=None):
super().draw(screen)
### end ###