We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01c4b5b commit c1aa62aCopy full SHA for c1aa62a
Assets/ThirdParty/CSharpSynth/Source/StreamingAssetResouce.cs renamed to Assets/ThirdParty/CSharpSynth/Source/StreamingAssetResource.cs
@@ -5,10 +5,19 @@
5
namespace UnityMidi
6
{
7
[System.Serializable]
8
- public class StreamingAssetResouce : IResource
+ public class StreamingAssetResource : IResource
9
10
[SerializeField] public string streamingAssetPath;
11
12
+ public StreamingAssetResource()
13
+ {
14
+ }
15
+
16
+ public StreamingAssetResource(string path)
17
18
+ this.streamingAssetPath = path;
19
20
21
public bool ReadAllowed()
22
23
return true;
@@ -44,4 +53,4 @@ public void DeleteResource()
44
53
throw new System.NotImplementedException();
45
54
}
46
55
47
-}
56
+}
0 commit comments