mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
10 lines
233 B
Python
10 lines
233 B
Python
"""
|
|
Defines AnimMgr
|
|
"""
|
|
from AnimMgrBase import *
|
|
|
|
class AnimMgr(AnimMgrBase):
|
|
""" Animation will create, manage, update animations in the scene """
|
|
|
|
def __init__(self, editor):
|
|
AnimMgrBase.__init__(self, editor)
|