Exemplo n.º 1
0
        public static Twelfth Twelfth(int tile)
        {
            long    absTicks = GenLocalDate.TicksAbs;
            Vector2 vector   = Find.WorldGrid.LongLatOf(tile);

            return(GenDate.Twelfth(absTicks, vector.x));
        }
Exemplo n.º 2
0
        public static Quadrum Quadrum(long absTicks, float longitude)
        {
            Twelfth twelfth = GenDate.Twelfth(absTicks, longitude);

            return(twelfth.GetQuadrum());
        }
Exemplo n.º 3
0
 public static Twelfth Twelfth(Thing thing)
 {
     return(GenDate.Twelfth(GenLocalDate.TicksAbs, GenLocalDate.LongitudeForDate(thing)));
 }
 public static Twelfth Twelfth(int tile)
 {
     return(GenDate.Twelfth((long)GenLocalDate.TicksAbs, Find.WorldGrid.LongLatOf(tile).x));
 }