diff options
author | Simponic <loganthebean222@gmail.com> | 2020-08-13 12:07:52 -0600 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2020-08-13 12:07:52 -0600 |
commit | d8b164e4727c887979d4da6a4011a444749862fc (patch) | |
tree | 63ae5ebfab9c1e438c0c2ccc97668e3ab809bdbd /src/velocity.cpp | |
parent | 40a568c50224c2832aeb13bd469d714d126118e1 (diff) | |
download | asteroids-cs165-d8b164e4727c887979d4da6a4011a444749862fc.tar.gz asteroids-cs165-d8b164e4727c887979d4da6a4011a444749862fc.zip |
Better file structure, stuff is better in general
Diffstat (limited to 'src/velocity.cpp')
-rw-r--r-- | src/velocity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/velocity.cpp b/src/velocity.cpp index ceca109..ec64cf3 100644 --- a/src/velocity.cpp +++ b/src/velocity.cpp @@ -1,4 +1,4 @@ -#include "velocity.h" +#include "../include/velocity.h" // Default velocity constructor Velocity :: Velocity () @@ -7,7 +7,7 @@ Velocity :: Velocity () setDy ( 0.0 ); } -// Velocity constructor +// Velocity constructor with data Velocity :: Velocity ( float dx , float dy ) { setDx ( dx ); |