Sha256: 0f1ac69fde46d869a3540c47f8575818a9d8885aaf1eb29f52213ff1e28a9b68
Contents?: true
Size: 600 Bytes
Versions: 20
Compression:
Stored size: 600 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # An abstract base object. # All objects and verbs derive from this. # module Gloo module Core class Baseo attr_accessor :name NOT_IMPLEMENTED_ERR = 'Not implemented yet!'.freeze # Set up the object. def initialize( engine ) @engine = engine @name = '' end # # The object type, suitable for display. # def type_display raise 'this method should be overriden' end end end end
Version data entries
20 entries across 20 versions & 1 rubygems