Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Metadata ctor

Plorence edited this page Nov 14, 2020 · 1 revision

Metadata(bool=false)

  • 첫 번째 인수로 메타데이터 초기화 여부를 전달합니다.
    (true를 전달하면 인스턴스 생성시 메타데이터를 다운로드 받아 초기화합니다.)

예시

using Kartrider.API;
using System;
namespace test
{
    class Program
    {
        static void Main(string[] args)
        {
            Metadata metadata = new Metadata(true);
        }
    }
}