mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-31 19:04:55 +00:00
And add a bit of error handling to CharSelectGF & CharSelectSubState Co-Authored-By: Linus Torvalds <torvalds@linux-foundation.org>
12 lines
258 B
Haxe
12 lines
258 B
Haxe
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;
|
|
}
|