Skip to content
View Faultz's full-sized avatar
  • United Kingdom
Block or Report

Block or report Faultz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Odyssey Odyssey Public

    C++ 2 1

  2. boosie_ui boosie_ui Public

    WIP implementation of a immediate mode menu library.

    C++ 2

  3. PyrexBLJ/Bonkerlands PyrexBLJ/Bonkerlands Public

    Borderlands 2 & Borderlands: The Pre-Sequel SPRX for PS3

    C++ 5

  4. Animation class for C++ Animation class for C++
    1
    #include "stdafx.h"
    2
    
    
    3
    #define clamp(x, low, high)  (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
    4
    
    
    5
    animations g_anim;