Added Texture object for handling creating and caching textures, stubbed ParticleEmitter

This commit is contained in:
2020-03-23 08:05:40 -05:00
parent 45021a92aa
commit 18a62b81cc
8 changed files with 82 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
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