#--------------------------------------------------------------------------
# ● HP の描画
# actor : アクター
# x : 描画先 X 座標
# y : 描画先 Y 座標
#--------------------------------------------------------------------------
def draw_actor_pic(actor, x, y, size = 16)
bitmap = RPG::Cache.picture("headpic/#{actor.battle_name}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(x, y + 4, bitmap, src_rect)
end