All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.accelbyte.sdk.core.SDKInfo Maven / Gradle / Ivy

There is a newer version: 0.67.0
Show newest version
/*
 * Copyright (c) 2022 AccelByte Inc. All Rights Reserved
 * This is licensed software from AccelByte Inc, for limitations
 * and restrictions contact your company contract manager.
 */

package net.accelbyte.sdk.core;

import lombok.Getter;

@Getter
public class SDKInfo {

  private static final SDKInfo instance = new SDKInfo();

  private String sdkName = "AccelByteJavaSDK";
  private String sdkVersion = "0.46.0";

  private SDKInfo() {}

  public static SDKInfo getInstance() {
    return instance;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy