mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Actually implement IDisposable on DirectoryHandle
This commit is contained in:
parent
17b8bc5b62
commit
1744e0a562
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
||||||
using LibHac.Fs.Fsa;
|
using System;
|
||||||
|
using LibHac.Fs.Fsa;
|
||||||
|
|
||||||
namespace LibHac.Fs
|
namespace LibHac.Fs
|
||||||
{
|
{
|
||||||
public readonly struct DirectoryHandle
|
public readonly struct DirectoryHandle : IDisposable
|
||||||
{
|
{
|
||||||
internal readonly Impl.DirectoryAccessor Directory;
|
internal readonly Impl.DirectoryAccessor Directory;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue