GDTKStatusEffect.Clone
Declaration#
public GDTKStatusEffect Clone()Description#
Create a clone of this object
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatusEffect target) { GDTKStatusEffect result = target.Clone(); }
}