/* * 2D Physic Engine * force.h: * Based on pikuma.com Learn Game Physics Engine Programming course. * Copyright (c) 2022 986-Studio. All rights reserved. * * Created by Manoƫl Trapier on 17/06/2022. */ #ifndef PHYSICENGINE_FORCE_H #define PHYSICENGINE_FORCE_H #include #include class force { public: static vec2 generateDragForce(const particle &particleRef, double k); }; #endif /* PHYSICENGINE_FORCE_H */