Adds some doc comments

This commit is contained in:
2026-07-05 14:04:01 +02:00
parent a649e58826
commit 1ab15110f5
5 changed files with 89 additions and 4 deletions

View File

@@ -6,8 +6,14 @@ using PkmnLib.Static.Utils;
namespace PkmnLib.Dynamic.AI;
/// <summary>
/// Helper functions for AI
/// </summary>
public static class AIHelpers
{
/// <summary>
/// Estimates the amount of damage that will be done by a move against a target.
/// </summary>
public static uint CalculateDamageEstimation(IMoveData move, IPokemon user, IPokemon target,
IDynamicLibrary library)
{