10 lines
177 B
Python
10 lines
177 B
Python
#!/usr/bin/python
|
|
|
|
class Attack(object):
|
|
def __init__(self, target):
|
|
self.target = target
|
|
|
|
def run(self):
|
|
raise Exception("Unimplemented method: run")
|
|
|