Skip to content

Instantly share code, notes, and snippets.

@UserUnknownFactor
UserUnknownFactor / common_db.rb
Last active May 8, 2024 09:42
Unpacker/repacker for RPG Maker XP, VX [Ace] games
require 'zlib'
# Some data structures that are common to both VX and VX Ace.
class Rect
def initialize(x, y, width, height)
@x = x
@y = y
@width = width
@height = height