コード例 #1
0
ファイル: INTERNAL_Internal.cs プロジェクト: traa/unified
        public static void StackPushVector(NWN.Vector?value)
        {
            if (!value.HasValue)
            {
                value = new NWN.Vector(0.0f, 0.0f, 0.0f);
            }

            StackPushVector_Native(value.Value);
        }
コード例 #2
0
ファイル: INTERNAL_Internal.cs プロジェクト: traa/unified
 public extern static void StackPushVector_Native(NWN.Vector value);