Hi,
This is my first attempt at making a game with Construct 2. I have taken the time to read the tutorial and to look at some games written by others. However, coming from the C# world, I need to wrap my head around certain new concepts.
I have a game in mind and I would like to set up a grid like set of squares. My problem is that I don't quite know how I would make a grid of NxN squares to represent my puzzle. Some of those squares must be visible (white) while others (those squares in the puzzle that are black).
Most importantly, I would like to read the puzzle from a text file that would look something like this:
5,5
??#??
#???#
??#??
?????
?????
Where '?' would represent the blank squares and '#' would represent the black squares.
Hopefully someone will be able to provide a solution or some leads.
Thank you