From 0c8ecb456a2a9ee43e50c770b05bd92dbe780721 Mon Sep 17 00:00:00 2001 From: g-spacewhale <17550607+g-spacewhale@users.noreply.github.com> Date: Fri, 17 Nov 2017 21:31:45 +0100 Subject: [PATCH] edited file structure, added git instructions --- README.md | 10 ++++++++-- {00_General => Source/functions/input}/input.cpp | 0 {00_General => Source/functions/output}/output.cpp | 0 {00_General => Source/functions/solve}/solve.cpp | 0 {00_General => Source}/header/input.h | 0 {00_General => Source}/header/output.h | 0 {00_General => Source}/header/solve.h | 0 7 files changed, 8 insertions(+), 2 deletions(-) rename {00_General => Source/functions/input}/input.cpp (100%) rename {00_General => Source/functions/output}/output.cpp (100%) rename {00_General => Source/functions/solve}/solve.cpp (100%) rename {00_General => Source}/header/input.h (100%) rename {00_General => Source}/header/output.h (100%) rename {00_General => Source}/header/solve.h (100%) diff --git a/README.md b/README.md index 5842acf..44d5684 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,17 @@ MPK Projekt Puzzle Solver # Git intro +1, Clone repository +2, branch master +3, dont ever touch master again +4, ..? +5, Profit +Seriously. don't merge branch to master unless you are absolutely, 100% sure it works! # Current Todo -Git für Puzzlelösung Projekt Momentane ToDos: +Git for Puzzle solving project 1, Input: @@ -18,7 +24,7 @@ Git für Puzzlelösung Projekt Momentane ToDos: 2, Solver --Grundsätzliche Aufbauweise konstruieren +-Grundsätzliche Aufbauweise -Puzzle nach bekommenen Informationen der Input Gruppe lösen -soweit dies möglich ist- diff --git a/00_General/input.cpp b/Source/functions/input/input.cpp similarity index 100% rename from 00_General/input.cpp rename to Source/functions/input/input.cpp diff --git a/00_General/output.cpp b/Source/functions/output/output.cpp similarity index 100% rename from 00_General/output.cpp rename to Source/functions/output/output.cpp diff --git a/00_General/solve.cpp b/Source/functions/solve/solve.cpp similarity index 100% rename from 00_General/solve.cpp rename to Source/functions/solve/solve.cpp diff --git a/00_General/header/input.h b/Source/header/input.h similarity index 100% rename from 00_General/header/input.h rename to Source/header/input.h diff --git a/00_General/header/output.h b/Source/header/output.h similarity index 100% rename from 00_General/header/output.h rename to Source/header/output.h diff --git a/00_General/header/solve.h b/Source/header/solve.h similarity index 100% rename from 00_General/header/solve.h rename to Source/header/solve.h