This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # モジュールインポート | |
| import os | |
| import json | |
| import tkinter | |
| import tkinter.filedialog | |
| from enum import Enum | |
| # アイコンスタイルを指定するための列挙体 | |
| class FAIconType(Enum): | |
| Solid = "solid" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Standard Namespaces | |
| using System; | |
| using System.IO; | |
| // SharpZipLib Namespaces | |
| using ICSharpCode.SharpZipLib.Tar; | |
| using ICSharpCode.SharpZipLib.GZip; | |
| // UnityEngine Namespaces | |
| using UnityEngine; |