summaryrefslogtreecommitdiffstats
path: root/dev/rays/main.cc
blob: 3bbc8b8ca701515d2cf7605defceec7a4ebdba10 (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;
}