Files
i-mic-rts/lib/ai/ai_player.rb

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