From 3010473314505bd948c687ac644b7d87ef03298d Mon Sep 17 00:00:00 2001 From: Simponic Date: Tue, 30 Jun 2020 20:10:29 -0600 Subject: [PATCH] Updated file structure and changed indents to spaces --- bullet.cpp => src/bullet.cpp | 0 bullet.h => src/bullet.h | 0 driver.cpp => src/driver.cpp | 0 flyingObject.cpp => src/flyingObject.cpp | 0 flyingObject.h => src/flyingObject.h | 0 game.cpp => src/game.cpp | 0 game.h => src/game.h | 0 makefile => src/makefile | 0 point.cpp => src/point.cpp | 0 point.h => src/point.h | 0 rocks.cpp => src/rocks.cpp | 0 rocks.h => src/rocks.h | 0 ship.cpp => src/ship.cpp | 0 ship.h => src/ship.h | 0 uiDraw.cpp => src/uiDraw.cpp | 0 uiDraw.h => src/uiDraw.h | 0 uiInteract.cpp => src/uiInteract.cpp | 0 uiInteract.h => src/uiInteract.h | 0 velocity.cpp => src/velocity.cpp | 0 velocity.h => src/velocity.h | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename bullet.cpp => src/bullet.cpp (100%) rename bullet.h => src/bullet.h (100%) rename driver.cpp => src/driver.cpp (100%) rename flyingObject.cpp => src/flyingObject.cpp (100%) rename flyingObject.h => src/flyingObject.h (100%) rename game.cpp => src/game.cpp (100%) rename game.h => src/game.h (100%) rename makefile => src/makefile (100%) rename point.cpp => src/point.cpp (100%) rename point.h => src/point.h (100%) rename rocks.cpp => src/rocks.cpp (100%) rename rocks.h => src/rocks.h (100%) rename ship.cpp => src/ship.cpp (100%) rename ship.h => src/ship.h (100%) rename uiDraw.cpp => src/uiDraw.cpp (100%) rename uiDraw.h => src/uiDraw.h (100%) rename uiInteract.cpp => src/uiInteract.cpp (100%) rename uiInteract.h => src/uiInteract.h (100%) rename velocity.cpp => src/velocity.cpp (100%) rename velocity.h => src/velocity.h (100%) diff --git a/bullet.cpp b/src/bullet.cpp similarity index 100% rename from bullet.cpp rename to src/bullet.cpp diff --git a/bullet.h b/src/bullet.h similarity index 100% rename from bullet.h rename to src/bullet.h diff --git a/driver.cpp b/src/driver.cpp similarity index 100% rename from driver.cpp rename to src/driver.cpp diff --git a/flyingObject.cpp b/src/flyingObject.cpp similarity index 100% rename from flyingObject.cpp rename to src/flyingObject.cpp diff --git a/flyingObject.h b/src/flyingObject.h similarity index 100% rename from flyingObject.h rename to src/flyingObject.h diff --git a/game.cpp b/src/game.cpp similarity index 100% rename from game.cpp rename to src/game.cpp diff --git a/game.h b/src/game.h similarity index 100% rename from game.h rename to src/game.h diff --git a/makefile b/src/makefile similarity index 100% rename from makefile rename to src/makefile diff --git a/point.cpp b/src/point.cpp similarity index 100% rename from point.cpp rename to src/point.cpp diff --git a/point.h b/src/point.h similarity index 100% rename from point.h rename to src/point.h diff --git a/rocks.cpp b/src/rocks.cpp similarity index 100% rename from rocks.cpp rename to src/rocks.cpp diff --git a/rocks.h b/src/rocks.h similarity index 100% rename from rocks.h rename to src/rocks.h diff --git a/ship.cpp b/src/ship.cpp similarity index 100% rename from ship.cpp rename to src/ship.cpp diff --git a/ship.h b/src/ship.h similarity index 100% rename from ship.h rename to src/ship.h diff --git a/uiDraw.cpp b/src/uiDraw.cpp similarity index 100% rename from uiDraw.cpp rename to src/uiDraw.cpp diff --git a/uiDraw.h b/src/uiDraw.h similarity index 100% rename from uiDraw.h rename to src/uiDraw.h diff --git a/uiInteract.cpp b/src/uiInteract.cpp similarity index 100% rename from uiInteract.cpp rename to src/uiInteract.cpp diff --git a/uiInteract.h b/src/uiInteract.h similarity index 100% rename from uiInteract.h rename to src/uiInteract.h diff --git a/velocity.cpp b/src/velocity.cpp similarity index 100% rename from velocity.cpp rename to src/velocity.cpp diff --git a/velocity.h b/src/velocity.h similarity index 100% rename from velocity.h rename to src/velocity.h