Skip to content

Instantly share code, notes, and snippets.

@ivanbruel
Created March 11, 2016 11:10
Show Gist options
  • Save ivanbruel/eef3142c4391413de470 to your computer and use it in GitHub Desktop.
Save ivanbruel/eef3142c4391413de470 to your computer and use it in GitHub Desktop.
Animal.swift
class Animal {
var name: String
var age: Int
var image: UIImage
init(name: String, age: Int, image: UIImage) {
self.name = name
self.age = age
self.image = image
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment