class Entity::Destination

Public Instance Methods

destroy!() click to toggle source
# File lib/game_2d/entity/destination.rb, line 18
def destroy!
  space.doom owner
end
draw_angle() click to toggle source
# File lib/game_2d/entity/destination.rb, line 16
def draw_angle; space.game.tick % 360; end
draw_zorder() click to toggle source
# File lib/game_2d/entity/destination.rb, line 15
def draw_zorder; ZOrder::Destination; end
image_filename() click to toggle source
# File lib/game_2d/entity/destination.rb, line 13
def image_filename; "destination.png"; end
should_fall?() click to toggle source
# File lib/game_2d/entity/destination.rb, line 7
def should_fall?; false; end
teleportable?() click to toggle source
# File lib/game_2d/entity/destination.rb, line 9
def teleportable?; false; end
update() click to toggle source
# File lib/game_2d/entity/destination.rb, line 11
def update; end