summaryrefslogtreecommitdiff
path: root/2d/softbody/softbody_1/main.cpp
blob: 33a2c775487c9534a82fbd2ddb8439e6c29f9a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "undamped.h"
#include "damped.h"
#include "../../../shared_cpp/WebglContext.h"

WebglContext context;

int main() {
    Damped::init(&context);
    Undamped::init(&context);
    return 0;
}


//
// Interactions with DOM handled below
//