geovannicorsino / 2048-C

Game 2048 developed in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿš€ 2048

The game 2048 developed in c

๐Ÿšง PREREQUISITES

Before starting, you will need to have the following tools installed on your machine: Git, Docker. I recommend using the VSCode

๐ŸŽฒ HOW TO RUN

  • Clone the project

    • HTTPS
    git clone https://github.com/geovannicorsino/2048.git
    • SSH
    git clone git@github.com:geovannicorsino/2048.git

  • Docker steps

    • Build
    docker build -t game2048:latest .
    • Run
    docker run --name game -v ${PWD}/:/app game2048

  • Run code

    • Create the compiled file
    gcc src/main.c -o main.o -lncurses -ltinfo
    • Run the compiled file
    ./main.o

๐Ÿ› ๏ธ TECH STACK

About

Game 2048 developed in C

License:MIT License


Languages

Language:C 99.8%Language:Dockerfile 0.2%