Created
March 16, 2017 17:57
-
-
Save kinathru/ce88677fd46bdd3376bcd559f9e307a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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