Last active
August 29, 2015 14:14
-
-
Save timsgardner/2c769cc9c3a22909d16c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using arcadia.messages; | |
| using clojure.lang; | |
| using System; | |
| using UnityEngine; | |
| using urbanOutfitters.parapoint; | |
| namespace urbanOutfitters.moholy | |
| { | |
| [Serializable] | |
| public class EllipsulonData : MonoBehaviour, IParaPoint, IStart, IOnDrawGizmosSelected, IType | |
| { | |
| // | |
| // Static Fields | |
| // | |
| protected internal static Var const__2; | |
| protected internal static Var const__1; | |
| protected internal static Var const__0; | |
| // | |
| // Constructors | |
| // | |
| static EllipsulonData () | |
| { | |
| ((IFn)RT.var ("clojure.core", "require").getRawRoot ()).invoke (Symbol.intern (null, "urbanOutfitters.moholy")); | |
| EllipsulonData.const__0 = RT.var ("urbanOutfitters.moholy", "ellipsulon-point"); | |
| EllipsulonData.const__1 = RT.var ("urbanOutfitters.moholy", "ellipsulon-gizmo"); | |
| EllipsulonData.const__2 = RT.var ("urbanOutfitters.moholy", "uor-register"); | |
| } | |
| // | |
| // Static Methods | |
| // | |
| public static IPersistentVector getBasis () | |
| { | |
| return RT.vector (new object[0]); | |
| } | |
| // | |
| // Methods | |
| // | |
| public override bool HasArity (int num) | |
| { | |
| return false; | |
| } | |
| public override object OnDrawGizmosSelected () | |
| { | |
| return ((IFn)EllipsulonData.const__1.getRawRoot ()).invoke (this); | |
| } | |
| public override object parapoint (object arg) | |
| { | |
| return ((IFn)EllipsulonData.const__0.getRawRoot ()).invoke (this, arg); | |
| } | |
| public override object Start () | |
| { | |
| return ((IFn)EllipsulonData.const__2.getRawRoot ()).invoke (this); | |
| } | |
| } | |
| } |
timsgardner
commented
Feb 5, 2015
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment