EditorTool3D/Assets/ZXL/Scripts/Test/FS/File.cs

10 lines
226 B
C#

namespace ZXLA
{
class File : FileSystemObject
{
public File(string path, int depth, bool isDisplay = true) : base(path, depth, isDisplay)
{
fileType = FileObjectType.File;
}
}
}