mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
6 lines
100 B
Java
6 lines
100 B
Java
|
package RusticiSoftware.System;
|
||
|
|
||
|
public interface IDisposable {
|
||
|
void Dispose() throws Exception;
|
||
|
}
|