❔ How to instantiate derived class when base class requires args?
Hey, I'll post the code below but I don't think it'll be necessary as I'm pretty sure I know what the problem is just not what to do about it...As the title suggests I have a base class that has only one constructor that requires arguments. When I instantiate an object of the derived class I get an error message that seems to be saying it needs the same data in those args of the original base class object:
Code below as I said, just in case.
Program.cs(133,16,133,22): error CS7036: There is no argument given that corresponds to the required parameter 'board' of 'Game.Game(Boards, Menu)'
Code below as I said, just in case.
