From 74865d9fc1341308b9588217c012f82e53524636 Mon Sep 17 00:00:00 2001 From: in0finite Date: Wed, 8 Sep 2021 16:51:46 +0200 Subject: [PATCH] ... --- Assets/Scripts/Behaviours/World/Cell.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Behaviours/World/Cell.cs b/Assets/Scripts/Behaviours/World/Cell.cs index 5da5fb68..7a62a116 100644 --- a/Assets/Scripts/Behaviours/World/Cell.cs +++ b/Assets/Scripts/Behaviours/World/Cell.cs @@ -79,7 +79,8 @@ namespace SanAndreasUnity.Behaviours.World } } - public int WorldSize { get; } = 6000; + public int WorldSize => 6000; // current world size - in the future, this will be configurable + public static int DefaultWorldSize => 6000; public float[] drawDistancesPerLayers = new float[] { 301, 801, 1501 };