3 Replies
its supposed to be input[y-1][x] = "X";
strings are immutable in C#
meaning you cant edit them, which is what this line of code is trying to do
you'd need to turn your string into a
char[]
if you want to be able to do thatUnknown User•3w ago
Message Not Public
Sign In & Join Server To View