mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
9 lines
270 B
Python
9 lines
270 B
Python
|
import ActiveCell
|
||
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
|
||
|
class DirectionalCell(ActiveCell.ActiveCell):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DirectionalCell')
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
ActiveCell.ActiveCell.__init__(self, cr)
|