8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
|
import { Component, ComponentNames } from ".";
|
||
|
|
||
|
export class NetworkUpdateable extends Component {
|
||
|
constructor() {
|
||
|
super(ComponentNames.NetworkUpdateable);
|
||
|
}
|
||
|
}
|