14 lines
192 B
Haxe
14 lines
192 B
Haxe
package arm.node.brush;
|
|
|
|
@:keep
|
|
class NullNode extends LogicNode {
|
|
|
|
public function new(tree: LogicTree) {
|
|
super(tree);
|
|
}
|
|
|
|
override function get(from: Int): Dynamic {
|
|
return null;
|
|
}
|
|
}
|