diff --git a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java index 8c74b1f..9e69d1e 100644 --- a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java +++ b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java @@ -2,4 +2,6 @@ package RusticiSoftware.System; public interface IDisposable { void Dispose() throws Throwable; + + void close() throws Throwable; }