Skip to content

Instantly share code, notes, and snippets.

View gaulinsoft's full-sized avatar

Nick Gaulin gaulinsoft

  • Gaulinsoft
  • Chicago, IL
View GitHub Profile
jTypes('struct Color', function(red, green, blue)
{
this.red = red;
this.green = green;
this.blue = blue;
},
{
'public int red': 0,
'public int green': 0,
'public int blue': 0