pkmn-classic-framework/library/Support/TrendyPhrase5.cs

21 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PkmnFoundations.Support
{
public class TrendyPhrase5 : TrendyPhraseBase
{
public TrendyPhrase5(byte[] data)
: base(data)
{
}
public override String Render(String wordFormat)
{
throw new NotImplementedException();
}
}
}