Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
31 lines (17 loc) · 894 Bytes

README.md

File metadata and controls

31 lines (17 loc) · 894 Bytes

⚠️ Not maintained; but, feel free to fork it. ⚠️

PacXon

A partial PacXon game clone in C, on terminal (you can play the original version here).

This game was my final project for the computer fundamentals and programming university course, originally made in early 2019.

A Screenshot

Simple build & run

Pro-tip: use an IDE to build and run the project.

Ubuntu

Tested on Ubuntu 22.04 LTS.

  • sudo apt install cmake gcc make libncurses-dev.
  • cmake . && make && ./PacXon

Or

  • sudo apt install gcc libncurses-dev
  • gcc main.c -lncurses && ./a.out

Other Operating Systems, including Windows

Figure it out 🙂.

For Windows, you can also check out earlier release v0.1.0 and follow the instructions said there.