Skip to content

Instantly share code, notes, and snippets.

# Maintainer: Benedikt Bitterli <benedikt.bitterli@gmail.com>
_realname=tinyformat
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=2.0.1
pkgrel=1
pkgdesc="A minimal type safe printf() replacement."
arch=('any')
license=('boost')
depends=()
#pragma once
// openvr.h
//========= Copyright Valve Corporation ============//
// Dynamically generated file. Do not modify this file directly.
#ifndef _OPENVR_API
#define _OPENVR_API
#include <stdint.h>
#! python3
# Copyright 2020 Benedikt Bitterli
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
{
"media": [],
"bsdfs": [],
"primitives": [
{
"transform": {},
"type": "minecraft_map",
"map_path": "C:/Users/Tuna brain/AppData/Roaming/.minecraft/saves/Exmaple",
"resource_packs": "C:/Users/Tuna brain/AppData/Roaming/.minecraft/versions/1.8.9/1.8.9.jar"
},
@tunabrain
tunabrain / Range.hpp
Last active August 1, 2019 08:30
Python ranges in C++
#ifndef RANGE_HPP_
#define RANGE_HPP_
template<typename T> class RangeIterator;
template<typename T>
class Range
{
T _start, _end, _step;