Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.28 KB

GENERAL_CONCEPT.md

File metadata and controls

49 lines (29 loc) · 1.28 KB

General Concept

To-do list

  1. Menu
  2. Map-system (including spawns, etc)
  3. Movement and collision system
  4. Game-mechanic system
  5. NPC and AI system
  6. Sound system
  7. to be continued

Basic git commands usage

Download sources:

git clone git://github.com/xd-development/Pacman-Reloaded.git

Download sources in custom folder:

git clone git://github.com/xd-development/Pacman-Reloaded.git <folder_name>

Update sources for up-to-date version (local):

git pull git://github.com/xd-development/Pacman-Reloaded.git master

Update the git repository with own changes:

git push git://github.com/xd-development/Pacman-Reloaded.git master  

Resources used

2D Graphic Engine

Allegro

Allegro 5.0.10

Compiler

VSC++
Visual Studio C++

Other useful links

*.md files markdown synatx
Allegro Tutorials

Allegro Game Tutorial (good one)