mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
22 lines
681 B
Python
22 lines
681 B
Python
|
from pandac.PandaModules import *
|
||
|
from direct.directnotify.DirectNotifyGlobal import *
|
||
|
import random
|
||
|
from direct.distributed.PyDatagram import PyDatagram
|
||
|
from direct.distributed.PyDatagramIterator import PyDatagramIterator
|
||
|
notify = directNotify.newCategory('AvatarDNA')
|
||
|
|
||
|
class AvatarDNA:
|
||
|
|
||
|
def __str__(self):
|
||
|
return 'avatar parent class: type undefined'
|
||
|
|
||
|
def makeNetString(self):
|
||
|
notify.error('called makeNetString on avatarDNA parent class')
|
||
|
|
||
|
def makeFromNetString(self, string):
|
||
|
notify.error('called makeFromNetString on avatarDNA parent class')
|
||
|
|
||
|
def getType(self):
|
||
|
notify.error('Invalid DNA type: ', self.type)
|
||
|
return type
|