Let’s build the 2048 game with Rust

Manpreet Singh
3 min readSep 13, 2021

Welcome back! Rust is an awesome programming language that can almost build anything, so let’s build out a game with this language. The specific game we’ll be building in this walkthrough is 2048, a very popular number game. Now, this entire project has been built out and hosted on GitHub, to jump straight to the project, check out the link below (please give the original coder of this game all of the credit):

Starting off, this project is broken down in a few different files, we have assets folder, as the src folder that holds all of our Rust files:

This Rust files are integral in building out our project:

--

--