Skip to content

Instantly share code, notes, and snippets.

# モジュールインポート
import os
import json
import tkinter
import tkinter.filedialog
from enum import Enum
# アイコンスタイルを指定するための列挙体
class FAIconType(Enum):
Solid = "solid"
@shirobusa1997
shirobusa1997 / ArchiverLibrary.cs
Last active June 13, 2023 15:52
Create TGZ Archive file with SharpZipLib in UnityEngine
// Standard Namespaces
using System;
using System.IO;
// SharpZipLib Namespaces
using ICSharpCode.SharpZipLib.Tar;
using ICSharpCode.SharpZipLib.GZip;
// UnityEngine Namespaces
using UnityEngine;