Funkin/source/io/newgrounds/components/Component.hx
2020-10-31 20:42:14 -07:00

13 lines
No EOL
170 B
Haxe

package io.newgrounds.components;
import io.newgrounds.NGLite;
class Component {
var _core:NGLite;
public function new(core:NGLite) {
this._core = core;
}
}