mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
55 lines
1.1 KiB
Python
55 lines
1.1 KiB
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||
|
|
||
|
class DistributedPetUD(DistributedObjectUD):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPetUD")
|
||
|
|
||
|
def setDNA(self, dna):
|
||
|
pass
|
||
|
|
||
|
def setOwnerId(self, ownerId):
|
||
|
pass
|
||
|
|
||
|
def setTraitSeed(self, traitSeed):
|
||
|
pass
|
||
|
|
||
|
def setSafeZone(self, safeZone):
|
||
|
pass
|
||
|
|
||
|
def setHead(self, head):
|
||
|
pass
|
||
|
|
||
|
def setEars(self, ears):
|
||
|
pass
|
||
|
|
||
|
def setNose(self, nose):
|
||
|
pass
|
||
|
|
||
|
def setTail(self, tail):
|
||
|
pass
|
||
|
|
||
|
def setBodyTexture(self, bodyTexture):
|
||
|
pass
|
||
|
|
||
|
def setColor(self, color):
|
||
|
pass
|
||
|
|
||
|
def setColorScale(self, colorScale):
|
||
|
pass
|
||
|
|
||
|
def setEyeColor(self, eyeColor):
|
||
|
pass
|
||
|
|
||
|
def setGender(self, gender):
|
||
|
pass
|
||
|
|
||
|
def setLastSeenTimestamp(self, timestamp):
|
||
|
pass
|
||
|
|
||
|
def setTrickAptitudes(self, aptitudes):
|
||
|
pass
|
||
|
|
||
|
def setLastSeenTimestamp(self, timestamp):
|
||
|
pass
|
||
|
|
||
|
|