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 {
void Dispose() throws Exception;
2011-01-31 16:28:32 +01:00
void close() throws Exception;
2010-06-21 16:31:42 -05:00
}