AftGangAglay Documentation


die

Parameters

N/A

Return Value

N/A

Description

Exits the engine mainloop and initiates a clean shutdown.

Example

import agan

class game():
	def create(self):
		return self
	#
	def update(self):
		agan.die()
	#
	def close(self):
		pass