Build a classic word search game where the player scans a 2D letter grid to find a list of hidden words by circling/highlighting contiguous letters in common directions (horizontal, vertical, and diagonal). The core loop is: show a grid + target word list → player selects letters that match a hidden word → the word is marked as found → the game ends when all words are found (win condition) and the player can restart for a new grid....more
Build a classic word search game where the player scans a 2D letter grid to find a list of hidden words by circling/highlighting contiguous letters in common directions (horizontal, vertical, and diagonal). The core loop is: show a grid + target word list → player selects letters that match a hidden word → the word is marked as found → the game ends when all words are found (win condition) and the player can restart for a new grid.