5 lines
170 B
C#
5 lines
170 B
C#
// This should be in a separate script file named "ILevel.cs"
|
|
public interface OptionLogic
|
|
{
|
|
void optionSelected(string option); // A common method for both classes
|
|
} |