Skip to content

Instantly share code, notes, and snippets.

@kinathru
Created March 16, 2017 17:57
Show Gist options
  • Save kinathru/ce88677fd46bdd3376bcd559f9e307a5 to your computer and use it in GitHub Desktop.
Save kinathru/ce88677fd46bdd3376bcd559f9e307a5 to your computer and use it in GitHub Desktop.
package com.kinath.interwar;
/**
* Created by Kinath on 3/15/2017.
*/
public class ServiceHandler
{
private static IGroundService iGroundService;
public static IGroundService getiGroundService()
{
return iGroundService;
}
public static void setiGroundService( IGroundService groundService )
{
iGroundService = groundService;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment