4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/teien/application/proxy_application.rb', line 4
def initialize()
require 'teien'
@event_router = Teien::EventRouter.new()
Teien::register_component("event_router", @event_router)
require "teien/base_object/base_object_manager_proxy"
@base_object_manager = Teien::BaseObjectManagerProxy.new()
Teien::register_component("base_object_manager", @base_object_manager)
require 'teien/animation/animation_manager_proxy'
@animation_manager = Teien::AnimationManagerProxy.new()
Teien::register_component("animation_manager", @animation_manager)
require 'teien/actor/actor_manager_proxy'
@actor_manager = Teien::ActorManagerProxy.new()
Teien::register_component("actor_manager", @actor_manager)
end
|