|
@ -17,7 +17,7 @@ |
|
|
|
|
|
|
|
|
import re |
|
|
import re |
|
|
|
|
|
|
|
|
class MumbleCtlBase (): |
|
|
|
|
|
|
|
|
class MumbleCtlBase (object): |
|
|
cache = {}; |
|
|
cache = {}; |
|
|
|
|
|
|
|
|
''' abstract Ctrol Object ''' |
|
|
''' abstract Ctrol Object ''' |
|
@ -64,6 +64,9 @@ class MumbleCtlBase (): |
|
|
def registerPlayer(self, srvid, name, email, password): |
|
|
def registerPlayer(self, srvid, name, email, password): |
|
|
raise NotImplementedError( "mctl::registerPlayer" ); |
|
|
raise NotImplementedError( "mctl::registerPlayer" ); |
|
|
|
|
|
|
|
|
|
|
|
def getRegistration(self, srvid, mumbleid): |
|
|
|
|
|
raise NotImplementedError( "mctl::setRegistration" ); |
|
|
|
|
|
|
|
|
def setRegistration(self, srvid, mumbleid, name, email, password): |
|
|
def setRegistration(self, srvid, mumbleid, name, email, password): |
|
|
raise NotImplementedError( "mctl::setRegistration" ); |
|
|
raise NotImplementedError( "mctl::setRegistration" ); |
|
|
|
|
|
|
|
|