11 lines
183 B
C#
11 lines
183 B
C#
using System;
|
|
|
|
namespace PkmnLibSharp.AI
|
|
{
|
|
public class NaiveAI : PokemonAI
|
|
{
|
|
public NaiveAI() : base(PkmnLibAI.Generated.NaiveAI.Create())
|
|
{
|
|
}
|
|
}
|
|
} |