Skip to content

Instantly share code, notes, and snippets.

View naruse's full-sized avatar

Juan Sebastian Muñoz naruse

  • Pencil Square Games
  • Canada
View GitHub Profile
@naruse
naruse / Date.h
Created December 17, 2018 19:27
Date.h
#pragma once
using namespace::std;
class Date {
public:
int year;
int month;
int day;
int hour;
@naruse
naruse / Calc.cs
Created October 22, 2013 12:48
Basically draws a calculator and all the logic inside of it.
/*
Basically draws a calculator and all the logic inside.
programmed by: Juan Sebastian Munoz Arango
naruse@gmail.com
October
*/
using UnityEngine;