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