Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 468 Bytes

README.md

File metadata and controls

17 lines (9 loc) · 468 Bytes

Introduction

A 2D game made using C++ utilizing OOP. A basic implementation of graphs, adjacency lists and relevant algorithms such as Djisktra.

Build Instructions

After cloning, compile the code using the following commands

Windows (Powershell)

g++ source.cpp -o m; ./m;

Linux

Please note that you may need to change some methods such as _getch() and the clearing the screen methods in order to run the code on Linux.

g++ source.cpp -o m && ./m;