Skip to content

bagasjs/noe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Noe

A small game engine written in C. I took some inspiration from this two library

Example

#include "noe.h"
int main(void)
{
    noe_Context *ctx = noe_create("Application Name", 800, 600, NOE_FLAG_DEFAULT);
    while(noe_step(ctx, NULL)) {
        noe_clear_background(NOE_WHITE);
        noe_draw_text(ctx, "Hello, World", 10, 10, 16);
    }
    noe_destroy(ctx);
}

About

A small game library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published