Jump to content

Fish Event the New Class


Recommended Posts

  • Bronze

This release is just information about fish event. I just made the class from their binary files. Some functions are not still accessible yet because of define flags.

class FishEventGridSlotWindow(Window):
	def __init__(self):
		Window.__init__(self)
		self.startIndex = 0

	def __del__(self):
		Window.__del__(self)

	def RegisterWindow(self, layer):
		self.hWnd = wndMgr.RegisterFishEventGridSlotWindow(self, layer)

	def ArrangeSlot(self, startIndex, xCount, yCount, xSize, ySize, xBlank, yBlank):
		self.startIndex = startIndex
		wndMgr.ArrangeSlot(self.hWnd, startIndex, xCount, yCount, xSize, ySize, xBlank, yBlank)

	def GetStartIndex(self):
		return self.startIndex
	
    # The newest compiled binary file is not contain this function yet. (ENABLE_FISH_EVENT)
	def SetPickedAreaRender(self, unkArg1):
		pass

Best Regards

Ken

  • Love 2

Do not be sorry, be better.

Link to comment
Share on other sites

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.