mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-01 03:15:53 +00:00
16 lines
219 B
Haxe
16 lines
219 B
Haxe
package funkin.modding.base;
|
|
|
|
/**
|
|
* An empty base class meant to be extended by scripts.
|
|
*/
|
|
@:nullSafety
|
|
class Object
|
|
{
|
|
public function new() {}
|
|
|
|
public function toString():String
|
|
{
|
|
return "(Object)";
|
|
}
|
|
}
|