mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
55 lines
No EOL
1.1 KiB
Python
55 lines
No EOL
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
|
|
|
|
|