diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-06-12 00:08:52 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-06-12 00:08:52 +0100 |
| commit | a76ec341b3f4636d4d241002e11df5745a3008d1 (patch) | |
| tree | ded25fec390661d33fd8bf4fce9bfd68e5c8baf9 | |
| parent | d70588d555c6f867e4c70f5e0bc816c32e06479a (diff) | |
| download | VRCog-a76ec341b3f4636d4d241002e11df5745a3008d1.tar VRCog-a76ec341b3f4636d4d241002e11df5745a3008d1.tar.gz VRCog-a76ec341b3f4636d4d241002e11df5745a3008d1.tar.bz2 VRCog-a76ec341b3f4636d4d241002e11df5745a3008d1.tar.xz VRCog-a76ec341b3f4636d4d241002e11df5745a3008d1.zip | |
wrap FileStatTree and PoiyomiFinder in namespace Zue.VRCog.Editor
| -rw-r--r-- | Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs | 7 | ||||
| -rw-r--r-- | Packages/dev.zue.vrcog/Editor/VRCog/PoiyomiFinder.cs | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs b/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs index 79cf756..89bb1e5 100644 --- a/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs +++ b/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs @@ -8,6 +8,9 @@ using System.Collections.Generic; using System.IO;
using System.Linq;
+namespace Zue.VRCog.Editor
+{
+
public class FileStatTree : EditorWindow
{
private GameObject targetObject;
@@ -167,4 +170,6 @@ public class FileStatTree : EditorWindow if (bytes >= 1048576) return (bytes / 1048576f).ToString("F2") + " MB";
return (bytes / 1024f).ToString("F2") + " KB";
}
-}
\ No newline at end of file +}
+
+} // namespace Zue.VRCog.Editor
\ No newline at end of file diff --git a/Packages/dev.zue.vrcog/Editor/VRCog/PoiyomiFinder.cs b/Packages/dev.zue.vrcog/Editor/VRCog/PoiyomiFinder.cs index 198efe0..b6fd218 100644 --- a/Packages/dev.zue.vrcog/Editor/VRCog/PoiyomiFinder.cs +++ b/Packages/dev.zue.vrcog/Editor/VRCog/PoiyomiFinder.cs @@ -8,6 +8,9 @@ using System; using System.Collections.Generic;
using System.Linq;
+namespace Zue.VRCog.Editor
+{
+
public class PoiyomiFinder : EditorWindow
{
private GameObject targetObject;
@@ -104,4 +107,6 @@ public class PoiyomiFinder : EditorWindow }
}
}
-}
\ No newline at end of file +}
+
+} // namespace Zue.VRCog.Editor
\ No newline at end of file |
