Hello

I need a 2-dimensional dynamic bool array with 2 fixed columns and dynamic number of rows.

Code:
bool *name[2];
name = new bool..?
What would be the proper way of implementing it?

Thanks a lot for help!