using System; using System.Runtime.InteropServices; using PkmnLibSharp.Utils; namespace PkmnLibSharp.FFI.DynamicData.Libraries { internal static class DamageLibrary { /// /// Creates a new generation 7 damage library. /// /// whether or not a random damage modifier (0.85x - 1.00x) is applied to the /// calculated damage. 0 for not, 1 for true [DllImport(Data.DllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] internal static extern FFIHandleValue gen_7_damage_library_new(byte hasRandomness); } }