mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
12 lines
294 B
Python
12 lines
294 B
Python
from toontown.uberdog.ScavengerHuntDataStore import *
|
|
from toontown.uberdog.DataStore import *
|
|
SH = 1
|
|
GEN = 2
|
|
TYPES = {SH: (ScavengerHuntDataStore,),
|
|
GEN: (DataStore,)}
|
|
|
|
def getStoreClass(type):
|
|
storeClass = TYPES.get(type, None)
|
|
if storeClass:
|
|
return storeClass[0]
|
|
return
|