summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/main.cc b/main.cc
new file mode 100644
index 0000000..773e0f4
--- /dev/null
+++ b/main.cc
@@ -0,0 +1,20 @@
+# include <cstdlib>
+# include <iostream>
+# include <luma/main.hh>
+# include <string>
+# include <unistd.h>
+luma::dat_t luma::dat;
+int main(int argc, char * * argv) {
+ if(argc < 0x2) {
+ std::cout << "Missing argument \"file\".\n";
+ exit(EXIT_FAILURE);
+ }
+ if((access(argv[0x1], F_OK) == 0)) {
+ luma::stdlibsock::gfx::crtwin("luma test"s,0x0,0x0,0x400,0x300,false);
+ }
+ else {
+ std::cout << "The file doesn't exist.\n";
+ exit(EXIT_FAILURE);
+ }
+ exit(EXIT_SUCCESS);
+}