This is a simple graphical dictionary application written in C++ using raylib. It demonstrates a basic trie data structure and loads oxford with their definitions from oxford.txt and meaning.txt.
- Loads dictionary oxford from external text files.
- Uses a trie data structure for quick word lookup.
- A minimal UI that accepts user input.
- Displays the definition of the entered word (if available).
- oxford.txt: Each line contains a single word.
- meaning.txt: Each line contains the corresponding definition.
- Ensure raylib is installed.
- Place
oxford.txtandmeaning.txtin the project root directory. - Create a build directory:
mkdir build && cd build