Skip to content

Instantly share code, notes, and snippets.

@selfsame
Created September 9, 2014 00:45
Show Gist options
  • Save selfsame/57c520272db48a62c002 to your computer and use it in GitHub Desktop.
Save selfsame/57c520272db48a62c002 to your computer and use it in GitHub Desktop.
defscript
(ns ships.core
(:use [unity.core])
(:import
[UnityEngine Debug Resources PrimitiveType Application]))
(defprotocol IAwake
(Awake [this]))
(defprotocol IStart
(Start [this]))
(defscript TreeGen []
IAwake
(Awake [this]
(require 'safe.core)
(UnityEngine.Debug/Log safe.core/a))
IStart
(Start [this]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment