diff options
Diffstat (limited to 'CollectionProj/Assets/Tools/CustomBaking/Editor/Baker.cs')
-rw-r--r-- | CollectionProj/Assets/Tools/CustomBaking/Editor/Baker.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CollectionProj/Assets/Tools/CustomBaking/Editor/Baker.cs b/CollectionProj/Assets/Tools/CustomBaking/Editor/Baker.cs new file mode 100644 index 0000000..61a23b4 --- /dev/null +++ b/CollectionProj/Assets/Tools/CustomBaking/Editor/Baker.cs @@ -0,0 +1,13 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using System.Threading;
+
+namespace CustomBaking
+{
+ public class Baker
+ {
+ Thread m_Thread;
+
+ }
+}
|