14 lines
269 B
Plaintext
14 lines
269 B
Plaintext
|
package slangc.codegraph;
|
||
|
|
||
|
public class DynamicWorld extends DynamicContainer implements AbstractWorld {
|
||
|
|
||
|
public DynamicWorld() {
|
||
|
// TODO Auto-generated constructor stub
|
||
|
}
|
||
|
|
||
|
public ContainerType getContainerType() {
|
||
|
return ContainerType.WORLD;
|
||
|
}
|
||
|
|
||
|
}
|