Skip to content

Instantly share code, notes, and snippets.

View anthofoxo's full-sized avatar
🦊
Being Fuzzy

AnthoFoxo anthofoxo

🦊
Being Fuzzy
View GitHub Profile
#include <cstdint>
#include <iostream>
struct vec3
{
float r, g, b;
};
struct vec4
{
#pragma once
#include <vector>
#include <memory>
#include <iostream>
#include <unordered_map>
class Entity;
class Component