Skip to content

Instantly share code, notes, and snippets.

@TankOs
TankOs / gist:a95fe1cb1ab9ebe36a03
Created October 9, 2014 07:25
Conversion script.
#!/bin/zsh
dos2unix **/*
sed -i "/class/b; /struct/b; /\?/b; /:)/b; / ::/b; /@interface/b; /:=/b; s/\([^)]\) \+:/\1:/g" **/*.hpp **/*.cpp **/*.mk **/*.mm **/*.h **/*.txt **/*.inl **/*.cmake
git checkout extlibs
git checkout src/SFML/Graphics/stb_image
@TankOs
TankOs / fonts.cpp
Created August 28, 2014 09:52
SFML underline text test
#include <SFML/Graphics.hpp>
#include <iostream>
int main() {
sf::RenderWindow window(
sf::VideoMode( 1024, 768 ),
"Fonts test",
sf::Style::Close | sf::Style::Titlebar
);