Files
i-mic-fps/lib/game_objects/particle_emitter.rb

10 lines
155 B
Ruby

class IMICFPS
def initialize(position:, image:, interval: 1_500, time_to_live: 3_000, max_particles: 500)
end
def draw
end
def update
end
end