9 lines
211 B
C
9 lines
211 B
C
|
#include "v4k.h" // Minimal C sample
|
||
|
|
||
|
int main() {
|
||
|
window_create(75.0, 0); // 75% size, no extra flags
|
||
|
|
||
|
while( window_swap() && !input(KEY_ESC) ) { // game loop
|
||
|
puts("hello V4K from C!");
|
||
|
}
|
||
|
}
|