mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
14 lines
304 B
C#
14 lines
304 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Generation 4/5 Chatter Recording
|
|
/// </summary>
|
|
public interface IChatter
|
|
{
|
|
public const int SIZE_PCM = 1000; // 0x3E8
|
|
public bool Initialized { get; set; }
|
|
public Span<byte> Recording { get; }
|
|
public int ConfusionChance { get; }
|
|
}
|