15 lines
293 B
C
15 lines
293 B
C
#ifndef ELEMENT_H
|
|
#define ELEMENT_H
|
|
// This header should be included by all files in src/elements/
|
|
|
|
#include <math.h>
|
|
#include "Simulation.h"
|
|
#include "Renderer.h"
|
|
#include "ElementFunctions.h"
|
|
//#include "powder.h"
|
|
#include "Gravity.h"
|
|
#include "Misc.h"
|
|
#include "ElementGraphics.h"
|
|
|
|
#endif
|