15 lines
259 B
Swift
15 lines
259 B
Swift
//
|
|
// Rules.swift
|
|
// nirvana-ios
|
|
//
|
|
// Created by Arjun Patel on 1/2/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class RuleBook {
|
|
static let maxFriends = 8
|
|
static let maxUsersInConvo = 8
|
|
static let convoRelevancyAcceptance = 0.5 // anything above this number
|
|
}
|