mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
16 lines
321 B
C#
16 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Rimworld_Animations_Patch
|
|
{
|
|
public static class SettingsUtility
|
|
{
|
|
public static float Align(float objectDim, float columnDim)
|
|
{
|
|
return (columnDim - objectDim) * 0.5f;
|
|
}
|
|
}
|
|
}
|