Skip to content

Instantly share code, notes, and snippets.

View nate-h's full-sized avatar

nate nate-h

View GitHub Profile
@nate-h
nate-h / codeHelp.cpp
Created October 8, 2017 05:01
Code review for jakub
////////////////////////////////////////////////////////////////////////////////
/// Here's a quick review of your code.
/// I didnt dive too much into breaking down your logic.
/// The main focus of my comments was making your code more readable.
/// In professional enviroments, readability is everything!
/// All of my comments use a "///" instead of "//"
////////////////////////////////////////////////////////////////////////////////
//***********************************************
//when hits the space key /// ADD SPACE BETWEEN "//" and rest of comment.
////////////////////////////////////////////////////////////////////////////////
// Jump functions used for first game I created.
// Disclaimer: I wrote this code fresh out of college. It's ugly!
////////////////////////////////////////////////////////////////////////////////
// Here's an overview in the rules for gravity in the game.
// 1. Mario is always falling.
// 2. If mario hits his head on an object, set velocity_y to 0
// 3. If mario hits his feet on an object, set velocity_y to 0