Property definitions

sdl2 $ MixInitFlags :: defaultinit
# Flags for `mix.initialize`
extern class MixInitFlags `{ int `}

	# Binary OR
	fun | (other: MixInitFlags): MixInitFlags `{ return self | other; `}

	private fun to_i: Int `{ return self; `}

	redef fun ==(o) do return o isa MixInitFlags and o.to_i == to_i
end
lib/sdl2/mixer.nit:208,1--217,3