From 8144e38aa067ec214cea3d99cefafba8899dd4d0 Mon Sep 17 00:00:00 2001 From: Godzil Date: Fri, 14 Feb 2020 14:21:40 +0000 Subject: [PATCH] Add an empty main (for now) --- source/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 source/main.cpp diff --git a/source/main.cpp b/source/main.cpp new file mode 100644 index 0000000..a950fad --- /dev/null +++ b/source/main.cpp @@ -0,0 +1,17 @@ +/* + * DoRayMe - a quick and dirty Raytracer + * + * Main app + * + * Created by Manoƫl Trapier + * Copyright (c) 2020 986-Studio. + * + */ +#include + + +int main(int argc, char *argv[]) +{ + printf("Hello !\n"); + return 0; +} \ No newline at end of file