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