GlobalParametersExample.cs 326 B

1234567891011121314151617181920
  1. using System;
  2. namespace I2.Loc
  3. {
  4. public class GlobalParametersExample : RegisterGlobalParameters
  5. {
  6. public override string GetParameterValue(string ParamName)
  7. {
  8. if (ParamName == "WINNER")
  9. {
  10. return "Javier";
  11. }
  12. if (ParamName == "NUM PLAYERS")
  13. {
  14. return 5.ToString();
  15. }
  16. return null;
  17. }
  18. }
  19. }