Nexa A simple odin library I made to use to make my games :) Getting Started First get Odin installed. Add the nexa folder to your project That's all you need to do! Basic Gameloop package main import nx "nexa" init :: proc() {} update :: proc(dt: f32) {} render :: proc() {} main :: proc() { nx.game(init, update, render, "Nexa Game", 1280, 720, false) }