赞 | 409 |
VIP | 0 |
好人卡 | 11 |
积分 | 392 |
经验 | 242285 |
最后登录 | 2025-1-12 |
在线时间 | 5737 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 39158
- 在线时间
- 5737 小时
- 注册时间
- 2006-11-10
- 帖子
- 6638
|
class Window_CraftGold < Window_Base
#--------------------------------------------------------------------------
# ● 初始化窗口
#--------------------------------------------------------------------------
def initialize
super(0, 0, 640, 480)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
这里写内容内容内容--------------------
end
end
|
|