Untitled

 avatar
unknown
plain_text
a year ago
337 B
3
Indexable
class UserSolution
{
	public void init()
	{
	}
	
	public void hire(int mID, int mTeam, int mScore)
	{
	}
	
	public void fire(int mID)
	{
	}

	public void updateSoldier(int mID, int mScore)
	{
	}

	public void updateTeam(int mTeam, int mChangeScore)
	{
	}
	
	public int bestSoldier(int mTeam)
	{
		return 0;
	}
}
Editor is loading...
Leave a Comment