Skip to content

Instantly share code, notes, and snippets.

View ramonmaruko's full-sized avatar

Ramon Marco L. Navarro ramonmaruko

  • Caresharing, Inc.
  • Cebu, Philippines
View GitHub Profile
using ColossalFramework;
using ICities;
using UnityEngine;
namespace EnableAchievementsMod {
public class EnableAchievements : IUserMod {
public string Name {
get { return "Enable Achievements"; }
}
@ramonmaruko
ramonmaruko / blocks_test.rb
Created November 27, 2012 09:31 — forked from poysama/blocks_test.rb
improve method list
#!/usr/bin/env ruby
class Game
attr_accessor :name, :year, :system
attr_reader :created_at
def initialize(name, options={})
self.name = name
self.year = options[:year]
self.system = options[:system]