Closed GoogleCodeExporter closed 9 years ago
Original comment by drewnoakes
on 7 Oct 2010 at 12:16
Hello Faizan,
Thank you very much for reporting this. I must have made an error while
copying and pasting into the documentation. The code should read:
using TinMan;
class MinimalAgent : AgentBase<NaoBody> {
public MinimalAgent() : base(new NaoBody()) {}
public override void Think(ISimulationContext context, PerceptorState state) {
// TODO kick goal
}
static void Main() {
// This call blocks while your agent runs
new AgentHost().Run(new MinimalAgent());
}
}
At some point I had called it SampleAgent, but then I decided to make many
samples, and this code wasn't updated properly. The wiki is up to date now:
http://code.google.com/p/tin-man/wiki/GettingStarted
Thanks again, and please let me know if there's anything else I can help with.
Original comment by drewnoakes
on 7 Oct 2010 at 12:20
Original comment by drewnoakes
on 6 Apr 2011 at 3:00
Original issue reported on code.google.com by
faizan.k...@gmail.com
on 7 Oct 2010 at 11:07