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

#include "snowman.h"

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