Skip to content

Instantly share code, notes, and snippets.

View meowstr's full-sized avatar
🐈‍⬛
cat

Meowster meowstr

🐈‍⬛
cat
View GitHub Profile
@meowstr
meowstr / CMakeLists.txt
Created May 30, 2024 18:59
crossplatform glfw/openal/opengl setup (windows, linux, web)
cmake_minimum_required( VERSION 3.28 )
project( newproject )
set( COMMON_SOURCES
# includes
# ...
# sources
# ...
@meowstr
meowstr / parser.cpp
Created February 27, 2024 20:11
wavefront parser nya~~
#include "wavefront.hpp"
#include "logging.hpp"
#include <float.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>