All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huskerdev.openglfx.canvas.events.GLReshapeEvent.kt Maven / Gradle / Ivy

There is a newer version: 4.1.14
Show newest version
package com.huskerdev.openglfx.canvas.events

import javafx.beans.NamedArg
import javafx.event.Event
import javafx.event.EventType


open class GLReshapeEvent(
    @NamedArg("eventType") eventType: EventType,
    @JvmField val width: Int,
    @JvmField val height: Int
) : Event(eventType) {

    companion object {
        private const val serialVersionUID = 20220503L

        /**
         * Common supertype for all event types.
         */
        @JvmStatic
        val ANY: EventType = EventType(Event.ANY, "GL_RESHAPE")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy