From 379eb58b736843a2ce3421b4a92af4b9cced1351 Mon Sep 17 00:00:00 2001 From: Florian Burgener <florian.burgener@etu.hesge.ch> Date: Tue, 21 Dec 2021 08:45:46 +0100 Subject: [PATCH] Move source code --- .editorconfig => src/.editorconfig | 0 CelestialObject.c => src/CelestialObject.c | 0 CelestialObject.h => src/CelestialObject.h | 0 Makefile => src/Makefile | 0 PlanetarySystem.c => src/PlanetarySystem.c | 0 PlanetarySystem.h => src/PlanetarySystem.h | 0 Vector2.c => src/Vector2.c | 0 Vector2.h => src/Vector2.h | 0 drawing.c => src/drawing.c | 0 drawing.h => src/drawing.h | 0 main.c => src/main.c | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename .editorconfig => src/.editorconfig (100%) rename CelestialObject.c => src/CelestialObject.c (100%) rename CelestialObject.h => src/CelestialObject.h (100%) rename Makefile => src/Makefile (100%) rename PlanetarySystem.c => src/PlanetarySystem.c (100%) rename PlanetarySystem.h => src/PlanetarySystem.h (100%) rename Vector2.c => src/Vector2.c (100%) rename Vector2.h => src/Vector2.h (100%) rename drawing.c => src/drawing.c (100%) rename drawing.h => src/drawing.h (100%) rename main.c => src/main.c (100%) diff --git a/.editorconfig b/src/.editorconfig similarity index 100% rename from .editorconfig rename to src/.editorconfig diff --git a/CelestialObject.c b/src/CelestialObject.c similarity index 100% rename from CelestialObject.c rename to src/CelestialObject.c diff --git a/CelestialObject.h b/src/CelestialObject.h similarity index 100% rename from CelestialObject.h rename to src/CelestialObject.h diff --git a/Makefile b/src/Makefile similarity index 100% rename from Makefile rename to src/Makefile diff --git a/PlanetarySystem.c b/src/PlanetarySystem.c similarity index 100% rename from PlanetarySystem.c rename to src/PlanetarySystem.c diff --git a/PlanetarySystem.h b/src/PlanetarySystem.h similarity index 100% rename from PlanetarySystem.h rename to src/PlanetarySystem.h diff --git a/Vector2.c b/src/Vector2.c similarity index 100% rename from Vector2.c rename to src/Vector2.c diff --git a/Vector2.h b/src/Vector2.h similarity index 100% rename from Vector2.h rename to src/Vector2.h diff --git a/drawing.c b/src/drawing.c similarity index 100% rename from drawing.c rename to src/drawing.c diff --git a/drawing.h b/src/drawing.h similarity index 100% rename from drawing.h rename to src/drawing.h diff --git a/main.c b/src/main.c similarity index 100% rename from main.c rename to src/main.c -- GitLab