/// /// Alignment.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.rive import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "Alignment". */ @DoNotStrip @Keep enum class Alignment(@DoNotStrip @Keep val value: Int) { TOPLEFT(0), TOPCENTER(1), TOPRIGHT(2), CENTERLEFT(3), CENTER(4), CENTERRIGHT(5), BOTTOMLEFT(6), BOTTOMCENTER(7), BOTTOMRIGHT(8); companion object }