GBitmap constructor

GBitmap([
  1. GTexture? texture
])

Constructs a new GBitmap object with the specified texture.

Implementation

GBitmap([GTexture? texture]) {
  this.texture = texture;
}