Skip to content

Instantly share code, notes, and snippets.

View tylersamples's full-sized avatar
🏠

Tyler Samples tylersamples

🏠
View GitHub Profile
<?php
echo "Yep, PHP can be ran";
?>
@tylersamples
tylersamples / cn.py
Created June 25, 2013 05:14
CN Python Example 1
nations = []
nations.append({"nationID": 12234, "nationName": "Python Nation", "nationRuler": "pyRuler"})
nations.append({"nationID": 13254, "nationName": "Other Nation", "nationRuler": "ermagerd"})
for nat in nations:
print nat["nationID"]
print nations
@tylersamples
tylersamples / camera.cpp
Last active December 15, 2015 16:29
Click to move
#include <Camera.h>
Camera::Camera(void):
m_Model(glm::mat4(0)),
m_View(glm::mat4(0)),
m_Projection(glm::mat4(0))
{
}
Camera::~Camera(void)