Add bv7 music offset

silent bgm boolean property too
This commit is contained in:
Kurt 2017-01-11 22:29:30 -08:00
parent f4797e06a0
commit ddf7327bf8

View file

@ -50,5 +50,8 @@ namespace PKHeX.Core
} }
} }
} }
public int MusicID { get { return Data[0x21C]; } set { Data[0x21C] = (byte)value; } }
public bool SilentBGM { get { return MusicID == 0xFF; } set { MusicID = (byte)(value ? 0xFF : MusicID); } }
} }
} }