Skip to content

Commit 1fc6f6d

Browse files
committed
upm. Created unity project. Moved classes from DependenciesHunter.cs to their own files
1 parent 56de718 commit 1fc6f6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3081
-332
lines changed

Assets/TestAssets.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/TestAssets/UnusedScript.cs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using UnityEngine;
4+
5+
public class UnusedScript : MonoBehaviour
6+
{
7+
// Start is called before the first frame update
8+
void Start()
9+
{
10+
11+
}
12+
13+
// Update is called once per frame
14+
void Update()
15+
{
16+
17+
}
18+
}

Assets/TestAssets/UnusedScript.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/TestAssets/UnusedScript.png

78 Bytes
Loading

Assets/TestAssets/UnusedScript.png.meta

+100
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/TestAssets/UsedScript.cs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using UnityEngine;
4+
5+
public class UsedScript : MonoBehaviour
6+
{
7+
// Start is called before the first frame update
8+
void Start()
9+
{
10+
11+
}
12+
13+
// Update is called once per frame
14+
void Update()
15+
{
16+
17+
}
18+
}

Assets/TestAssets/UsedScript.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/TestAssets/UsedSprite.png

78 Bytes
Loading

Assets/TestAssets/UsedSprite.png.meta

+100
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)