Property definitions

gamnit $ Subtexture :: defaultinit
# Texture derived from another texture, does not own its pixels
abstract class Subtexture
	super Texture

	# Parent texture, from which this texture was created
	var parent: Texture

	redef fun root do return parent.root

	redef fun load(force) do root.load(force)
end
lib/gamnit/textures.nit:338,1--348,3