Skip to content

Instantly share code, notes, and snippets.

@UserUnknownFactor
UserUnknownFactor / common_db.rb
Last active April 28, 2026 03:54
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