mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Fix ToolTip = null
Thanks RustInPeace!
This commit is contained in:
parent
076a8b369d
commit
d508e68057
1 changed files with 4 additions and 1 deletions
|
@ -233,7 +233,10 @@ namespace PKHeX
|
|||
public static string[] wallpapernames, puffs, itempouch = { };
|
||||
public static string curlanguage = "en";
|
||||
public static bool unicode;
|
||||
public ToolTip Tip1, Tip2, Tip3, NatureTip = new ToolTip();
|
||||
public ToolTip Tip1 = new ToolTip();
|
||||
public ToolTip Tip2 = new ToolTip();
|
||||
public ToolTip Tip3 = new ToolTip();
|
||||
public ToolTip NatureTip = new ToolTip();
|
||||
public static List<Util.cbItem> MoveDataSource, ItemDataSource, SpeciesDataSource, BallDataSource, NatureDataSource;
|
||||
private PictureBox[] SlotPictureBoxes;
|
||||
#endregion
|
||||
|
|
Loading…
Reference in a new issue