module GameObject
  attr_accessor :x
  attr_accessor :y
  attr_accessor :speed
  attr_accessor :angle
  attr_accessor :img
  attr_accessor :function
  def draw
    #描画関係
  end
  def move
    #前に推進する処理とか。×
    #オブジェクトをsin,cosで動かす処理 ○
  end
  def effect
    #爆発とかそういうの
  end
end
module Misa_module
  def homing
    #ホーミングしてもいいし、しなくてもいい
  end
end

class Misa
  include GameObject
  include Misa_module
  def initialize
  end
end

# Field
go = nil
