package com.Asdf.Plugins;

import com.Asdf.DynamicLibraries.DemoSearchInterface;
import com.Asdf.DynamicLibraries.DemoPluginInterface;

public class MyPluginSearch implements DemoSearchInterface
{
	public MyPluginSearch()
	{
		System.out.println("MyPluginSearch instantiated");
	}
	
	public boolean Match(DemoPluginInterface game)
	{
		if (game.kaksi() == 0xbeef)
		{
			System.out.println("Found matching game");
			return true;
		}
		else
		{
			System.out.println("Game didn't match");
			return false;
		}
	}
}