1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-09-04 12:48:04 +00:00
Funkin/source/funkin/util/tools/ICloneable.hx

12 lines
258 B
Haxe
Raw Permalink Normal View History

package funkin.util.tools;
/**
* Implement this on a class to enable `Array<T>.deepClone()` to work on it.
* NOTE: T should be the type of the class that implements this interface.
*/
@:nullSafety
interface ICloneable<T>
{
public function clone():T;
}