Skip to content

WorldInformation

WorldInformation은 아바타 별로 하나씩 존재하며 아바타의 모험 정보를 포함합니다.

상태

상태 조회:

cs
public WorldInformation? GetWorldInformation(IWorld world, Address address)
{
    IAccount account = world.GetAccount(Addresses.WorldInformation);
    if (account is null)
    {
        return null;
    }

    IValue state = account.GetState(address);
    return state switch
    {
        Bencodex.Types.Dictionary d => new WorldInformation(d),
        _ => null,
    };
}