7 lines
149 B
Python
7 lines
149 B
Python
#!/usr/bin/env python
|
|
|
|
from aman.sys.aco.Colony import Colony
|
|
|
|
class Ant:
|
|
def __init__(self, colony : Colony):
|
|
self.Colony = colony |