note
	description: "A keyboard key."
	author: "Louis Marchand"
	date: "Thu, 02 Apr 2015 02:40:10 +0000"
	revision: "2.0"

class interface
	GAME_KEY

create 
	make_from_physical_code,
	make_from_virtual_code,
	make_from_name

feature -- Access

	virtual_code: INTEGER_32
			-- Code of the key using the virtual layout keyboard
			-- (should be compatible between systems)

	physical_code: INTEGER_32
			-- Hardware code of the key
			-- (not compatible between systems)

	unicode_out: READABLE_STRING_GENERAL
			-- The unicode text representation of Current

	out: STRING_8
			-- New string containing terse printable representation
			-- of current object
			-- Note that this value is in UTF-8.
			-- Use unicode_out to get the UTF-8 representatin
	
end -- class GAME_KEY

Generated by ISE EiffelStudio