diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-21 23:50:06 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-21 23:50:06 -0700 |
commit | 8f38659932677a2b0e00b7f4abda54ac76a8ecd9 (patch) | |
tree | 705767e858a3fe0c89b7b4bc0440012a084c6921 /mino.c | |
parent | 599cde356b576759475d34dbfadb5548926c089d (diff) |
SRS-style rotation skeleton
Diffstat (limited to 'mino.c')
-rw-r--r-- | mino.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -1,18 +1,8 @@ #include<stdio.h> #include<stdlib.h> -#include<cglm/affine.h> -#include<cglm/cglm.h> #include"mino.h" -#include"graph.h" -#include"scene.h" NR V die(IM C*f,...)VA(f,vfprintf(stderr,f,ap),fputc('\n',stderr),exit(1)) V*make(Uz z){V*p;N(p=malloc(z), die("oom"))R p;} V*remk(V*p,Uz z){N(p=realloc(p,z),die("oom"))R p;} V del(V*p){free(p);} - -X Scene scene_title; -I main(I ac,C**av){(V)ac,(V)av; - graph_init(),atexit(graph_deinit); - scene_run(&scene_title); - R 0;} |