14 lines
182 B
Python
14 lines
182 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
class User(object):
|
|
def upgrade(self):
|
|
pass
|
|
|
|
def _buy_equipment(self):
|
|
pass
|
|
|
|
def __pk(self):
|
|
pass
|
|
|