|  | @@ -38,6 +38,7 @@ type Space interface {
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  const (
 |  |  const (
 | 
											
												
													
														|  | 
 |  | +	// SpaceInitializing is an event to be fired when Space is being initialized.
 | 
											
												
													
														|  |  	SpaceInitializing event.Event = iota
 |  |  	SpaceInitializing event.Event = iota
 | 
											
												
													
														|  |  )
 |  |  )
 | 
											
												
													
														|  |  
 |  |  
 | 
											
										
											
												
													
														|  | @@ -47,6 +48,7 @@ type spaceImpl struct {
 | 
											
												
													
														|  |  	initialized bool
 |  |  	initialized bool
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | 
 |  | +// NewSpace creates a new Space.
 | 
											
												
													
														|  |  func NewSpace() Space {
 |  |  func NewSpace() Space {
 | 
											
												
													
														|  |  	return &spaceImpl{
 |  |  	return &spaceImpl{
 | 
											
												
													
														|  |  		cache: make(map[reflect.Type]Application),
 |  |  		cache: make(map[reflect.Type]Application),
 |