Skip to content

Commit

Permalink
changed GoDataType into GoProxyProp
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Goodrich authored and Ryan Goodrich committed Apr 22, 2015
1 parent 5aa6a4a commit d7e89d4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 49 deletions.
49 changes: 0 additions & 49 deletions Assets/Plugins/GoKit/GoDataType.cs

This file was deleted.

14 changes: 14 additions & 0 deletions Assets/Plugins/GoKit/GoProxyProp.cs
@@ -0,0 +1,14 @@
using UnityEngine;
using System.Collections;

public class GoProxyProp<T>
{

public T value { get; set; }

public GoProxyProp( T startValue )
{
value = startValue;
}

}
Binary file modified ProjectSettings/ProjectSettings.asset
Binary file not shown.

0 comments on commit d7e89d4

Please sign in to comment.