-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
Remove NET_4_6 pragmas from most files, add one to NRepl.cs as it truly only works on .NET 4.x
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
#if NET_4_6 | ||
using UnityEngine; | ||
using UnityEngine.EventSystems; | ||
using clojure.lang; | ||
|
||
public class OnBeginDragHook : ArcadiaBehaviour, IBeginDragHandler | ||
public class OnBeginDragHook : ArcadiaBehaviour | ||
{ | ||
public void OnBeginDrag(PointerEventData a) | ||
{ | ||
RunFunctions(a); | ||
} | ||
} | ||
#endif | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
#if NET_4_6 | ||
using UnityEngine; | ||
using UnityEngine.EventSystems; | ||
using clojure.lang; | ||
|
||
public class OnCancelHook : ArcadiaBehaviour, ICancelHandler | ||
public class OnCancelHook : ArcadiaBehaviour | ||
{ | ||
public void OnCancel(BaseEventData a) | ||
{ | ||
RunFunctions(a); | ||
} | ||
} | ||
#endif | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.