mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-15 07:42:34 +00:00
15 lines
184 B
Ruby
15 lines
184 B
Ruby
class IMICRTS
|
|
class AIPlayer < Player
|
|
def tick(tick_id)
|
|
super
|
|
|
|
think
|
|
end
|
|
|
|
def think
|
|
# build base
|
|
# construct army
|
|
# attack
|
|
end
|
|
end
|
|
end |