1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

8 lines
133 B
Java
Raw Normal View History

2010-06-21 16:31:42 -05:00
package RusticiSoftware.System;
public interface IDisposable {
2011-01-29 09:29:03 +01:00
void Dispose() throws Throwable;
2011-01-31 16:28:32 +01:00
void close() throws Throwable;
2010-06-21 16:31:42 -05:00
}