Skip to content

Commit

Permalink
feat: make occupants optional
Browse files Browse the repository at this point in the history
  • Loading branch information
makinosp committed Sep 29, 2024
1 parent 8f18da4 commit 5352121
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/VRCKit/Models/WorldModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public struct World: Codable, Sendable, Identifiable, Hashable {
public let heat: Int
public let version: Int?
public let unityPackages: [UnityPackage]
public let occupants: Int
public let privateOccupants: Int
public let publicOccupants: Int
public let occupants: Int?
public let privateOccupants: Int?
public let publicOccupants: Int?

public enum ReleaseStatus: String, Codable, Sendable {
case `public`, `private`, hidden, all
Expand Down

0 comments on commit 5352121

Please sign in to comment.