blob: 4c59f3bfa114392d82183204376a823347d8dc44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package moe.nea.mossbar.concepts;
import manifold.ext.rt.api.Self;
public interface ScopeObject {
default @Self ScopeObject bindTo(Scope scope) {
return scope.bind(this);
}
void closeObject();
}
|