summaryrefslogtreecommitdiffstats
path: root/dev/mesh-demo/main.cc
blob: 7550843999dd9179375aac9bc7f88114cc54f586 (plain) (blame)
1
2
3
4
5
6
7
8
9
/** CSci-4611 In-Class Example */

#include "example.h"

int main(int argc, const char *argv[]) {
    Example app;
    app.Run();
    return 0;
}