I have something like this:
class RGBMatrix{
int Matrix[100][100];
//STUFF
}
I want to be able, if possible, to access the RGBMatrix elements like this:
RGBMatrix[5][4] = ...
And not like this:
RGBMatrix.Matrix[5][4] = ...
If it's not possible, or safe, what other options do I have? also...
how do i use the insert Code format?
Thanks in advance!
Last edited on
Thank you for the quick replays!
Last edited on