Skip to content

Instantly share code, notes, and snippets.

View Starpelly's full-sized avatar
✝️
love jesus the christ and god

Braedon Vale Starpelly

✝️
love jesus the christ and god
View GitHub Profile
@RogueMacro
RogueMacro / Program.cs
Created March 24, 2021 17:00
SDL2 + ImGui example in Beeflang
using System;
using ImGui;
using SDL2;
namespace Example
{
public class Program
{
public static int Main(String[] args)
{
@mattiasgustavsson
mattiasgustavsson / main.c
Created March 5, 2024 19:18
Minimal code example for creating a window to plot pixels to
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <windows.h>
#pragma comment( lib, "user32.lib" )
#pragma comment( lib, "gdi32.lib" )
#define SCRW 640
#define SCRH 480