git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
#include <cstdio> | |
#include <cmath> | |
#include <string> | |
#include "raylib.h" | |
#include "waterpool.hpp" | |
const int WIDTH = 160; | |
const int HEIGHT = 160; | |
using PoolType = Sapphire::WaterPool<WIDTH, HEIGHT>; |