mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
7 lines
145 B
C#
7 lines
145 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface IDaycareExperience
|
|
{
|
|
uint GetDaycareEXP(int index);
|
|
void SetDaycareEXP(int index, uint value);
|
|
}
|