diff options
Diffstat (limited to 'FrogTest/Assets/Scripts/FrogScript.cs')
-rw-r--r-- | FrogTest/Assets/Scripts/FrogScript.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/FrogTest/Assets/Scripts/FrogScript.cs b/FrogTest/Assets/Scripts/FrogScript.cs new file mode 100644 index 0000000..688a463 --- /dev/null +++ b/FrogTest/Assets/Scripts/FrogScript.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.U2D; +using UnityEngine.U2D.Animation; + +public class FrogScript : MonoBehaviour +{ + + SpriteSkin skin; + + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +} |