I've been trying to fix this class null problem for little bit. I don't understand it. It say that my class is null for some reason. Which then make my LoadContent null too. The additional information says: Object reference not set to an instance of an object.
CharacterInfo Chara;//Chara Class is Null
Chara.LoadContent(Content);// Error pointing to
//This is behind Chara.LoadContent(Content);
texture = Content.Load<Texture2D>("Art/BlueAnvil");
HealthBar = Content.Load<Texture2D>("Art/HealthBar");
Started happening after I add the LoadContent constructor, to the class, and started to using Chara.LoadContent(Content);
Please help me expand my knowledge in C# so I can remember how to fix this.