Property definitions

gamnit $ GamnitInputEvent :: defaultinit
# SDL2 event wrapper implementing the `mnit::input` API
#
# There is two views to the underlying native object: `buffer` and `native`.
class GamnitInputEvent
	super InputEvent

	# Native SDL 2 event buffer with the pseudo class hierarchy metadata
	var buffer: SDLEventBuffer

	# Native SDL 2 event
	var native: NATIVE

	# Type of the `native` underlying SDL 2 event
	type NATIVE: SDLEvent
end
lib/gamnit/gamnit_linux.nit:90,1--104,3