A Tetris clone for the 3DS.
Table of Contents
For building you’ll need to set up devkitPro and you’ll need to have the following tools in your PATH
:
Make sure to clone recursively (required for third-party libs, check lib/
):
git clone --recursive https://github.com/3DStris/3DStris
# If you've already cloned without --recursive, do:
git submodule update --init
❗
|
On Windows, the following commands should be run in the devkitPro shell (devkitPro/msys2/usr/bin/bash.exe ).
|
cmake -G "Unix Makefiles" -S . -B build
cmake --build build
# or if your CMake version isn't new enough
mkdir build && cd build
cmake -G "Unix Makefiles" ..
make
Resulting binaries can be found in build/bin/
.
3DStris currently has translations available for the following languages:
-
English
-
Bulgarian by @geniiii
-
German by @itsdavvid
-
Polish by @itsdavvid
-
(Brazilian) Portuguese by @matcool
-
Russian by @oatmealine
-
Japanese by @Epicpkmn11
-
Macedonian by @geniiii
-
French by @badablek
Distributed under the MIT license. See the accompanying LICENSE file for more information.