first commit
This commit is contained in:
20
NitroxModel/Helper/IMap.cs
Normal file
20
NitroxModel/Helper/IMap.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.GameLogic;
|
||||
|
||||
namespace NitroxModel.Helper
|
||||
{
|
||||
public interface IMap
|
||||
{
|
||||
public int BatchSize { get; }
|
||||
/// <summary>
|
||||
/// AKA LargeWorldStreamer.blocksPerBatch
|
||||
/// </summary>
|
||||
public NitroxInt3 BatchDimensions { get; }
|
||||
public NitroxInt3 DimensionsInMeters { get; }
|
||||
public NitroxInt3 DimensionsInBatches { get; }
|
||||
public NitroxInt3 BatchDimensionCenter { get; }
|
||||
public List<NitroxTechType> GlobalRootTechTypes { get; }
|
||||
public int ItemLevelOfDetail { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user