11 lines
323 B
C#
11 lines
323 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public static class DuelFi
|
|
{
|
|
public const string VALIDATOR_DEV_URL = "https://validator.duelfi.io";
|
|
public const string VALIDATOR_PROD_URL = "https://validator.duelfi.io";
|
|
public static string VALIDATOR_URL = VALIDATOR_PROD_URL;
|
|
}
|