This file contains 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
@interface AStarNode : NSObject | |
{ | |
@public | |
AStarNode *parent; | |
CGPoint point; | |
NSInteger g; | |
NSInteger h; | |
} | |
+ (id)nodeAtPoint:(CGPoint)p; |
This file contains 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
/* | |
* HKTMXTiledMap | |
* | |
* cocos2d-extensions | |
* https://github.com/cocos2d/cocos2d-iphone-extensions | |
* | |
* HKASoftware | |
* http://hkasoftware.com | |
* | |
* Copyright (c) 2011 HKASoftware |
This file contains 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
/* | |
* Kobold2D™ --- http://www.kobold2d.org | |
* | |
* Copyright (c) 2010-2011 Steffen Itterheim. | |
* Released under MIT License in Germany (LICENSE-Kobold2D.txt). | |
*/ | |
#import "cocos2d.h" | |
enum |
This file contains 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 UnityEngine; | |
namespace ca.HenrySoftware.Deko | |
{ | |
public class Singleton<T> : MonoBehaviour where T : MonoBehaviour | |
{ | |
protected static T instance; | |
public static T Instance | |
{ | |
get | |
{ |
This file contains 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 System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
namespace ca.HenrySoftware.Deko | |
{ | |
[CustomPropertyDrawer(typeof(DataAnimation))] | |
public class DataAnimationEditor : PropertyDrawer | |
{ | |
private static float _offset = EditorGUIUtility.singleLineHeight; | |
private tk2dGenericIndexItem[] _indexes = null; |
This file contains 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 UnityEngine; | |
public class GridTexture | |
{ | |
public enum Type | |
{ | |
LightChecked, | |
MediumChecked, | |
DarkChecked, | |
BlackChecked, | |
LightSolid, |
This file contains 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 System; | |
using System.Security.Cryptography; | |
using UnityEngine; | |
public static class Random | |
{ | |
private static int _offset = 0; | |
private static byte[] _buffer = new byte[1024]; | |
private static RNGCryptoServiceProvider _random = new RNGCryptoServiceProvider(); | |
private static void Fill() | |
{ |
This file contains 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
using UnityEngine; | |
public class Loom : MonoBehaviour | |
{ | |
public static int maxThreads = 8; | |
static Loom _current; | |
static bool initialized; |
This file contains 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
{"lastUpload":"2019-12-02T22:50:44.036Z","extensionVersion":"v3.4.3"} |
This file contains 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
{ | |
"version": "0.1.0", | |
"command": "powershell", | |
"isShellCommand": true, | |
"showOutput": "silent", | |
"args": [ | |
"-Command" | |
], | |
"tasks": [ | |
{ |
OlderNewer