mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
23 lines
436 B
C#
23 lines
436 B
C#
|
using RimWorld;
|
|||
|
using Verse;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Rimworld_Animations {
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class OffsetMainButtonDefOf {
|
|||
|
|
|||
|
public static MainButtonDef OffsetManager;
|
|||
|
|
|||
|
|
|||
|
static OffsetMainButtonDefOf() {
|
|||
|
DefOfHelper.EnsureInitializedInCtor(typeof(OffsetMainButtonDefOf));
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|