mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
25 lines
340 B
Ruby
25 lines
340 B
Ruby
class IMICFPS
|
|
class HUD
|
|
class Widget
|
|
include CommonMethods
|
|
attr_reader :options
|
|
|
|
def initialize(options = {})
|
|
@options = options
|
|
@player = options[:player]
|
|
@margin = 10
|
|
|
|
setup
|
|
end
|
|
|
|
def setup
|
|
end
|
|
|
|
def draw
|
|
end
|
|
|
|
def update
|
|
end
|
|
end
|
|
end
|
|
end |