1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-08 15:56:04 +00:00
Funkin/source/io/newgrounds/components/Component.hx
2020-11-01 14:16:22 -05:00

13 lines
170 B
Haxe

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