Package com.deadpan_gamez.application

Source Code of com.deadpan_gamez.application.ApplicationResourcesImpl

package com.deadpan_gamez.application;

import com.deadpan_gamez.cache.CacheImpl;
import com.deadpan_gamez.event.EventHandler;

public class ApplicationResourcesImpl implements ApplicationResources{

  private EventHandler eventHandler;
  private CacheImpl cacheImpl;
 
  public ApplicationResourcesImpl() {
   
    eventHandler = new EventHandler();
    cacheImpl = new CacheImpl();
  }
 
  @Override
  public EventHandler getEventHandler() {
    return eventHandler;
  }

  @Override
  public CacheImpl getCacheImpl() {
    return cacheImpl;
  }

}
TOP

Related Classes of com.deadpan_gamez.application.ApplicationResourcesImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.