Skip to content

zomagic/guiBasic

Repository files navigation

guiBasic - GUI for CerberusX

  • This guiBasic previously known as MyGui was created by Christopher Challenger in 2012.
  • It was converted from MonkeyX to CerberusX by Memzen in 2019
  • Add support to Cerberus X Font by ZoMagic in 2022 🎉

Unzip the downloaded file and copy the guiBasic folder into your CerberusX modules_ext folder

At the beginning of your code:

Import guiBasic

In your OnUpdate() method:

Gui.Update()

In Your OnRender() method:

Gui.Draw()

Import mojo
Import guiBasic
Function Main();New Game;End Function
Class Game Extends App
	Method OnCreate()
		SetUpdateRate(60)
	End Method
	Method OnUpdate()
		Gui.Update()
	End Method
	Method OnRender()
		Cls(200,200,200)
		Gui.Draw()
	End Method
End Class

About

GUI for CerberusX

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published