/// /// Vector.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.gradient import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "Vector". */ @DoNotStrip @Keep data class Vector( @DoNotStrip @Keep val x: Variant_String_Double, @DoNotStrip @Keep val y: Variant_String_Double ) { /* primary constructor */ private companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(x: Variant_String_Double, y: Variant_String_Double): Vector { return Vector(x, y) } } }