XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

DeathMod

【Terraria】DeathMod (now aka Soul Harvest)

公开
关注 0 Fork 0 Star 0
UTF-8
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using System;
using System.Collections.Generic;
using Terraria;
using Terraria.GameContent;
using Terraria.Graphics;
using Terraria.ModLoader;
using Terraria.UI;

namespace SoulHarvest.Common;


/// <summary>
/// Internal, damage-free description of one synchronized Reaper presentation cue.
/// Gameplay projectiles remain authoritative; this value only selects a storyboard.
/// </summary>
internal readonly record struct ReaperVisualEvent(
    int Owner,
    ReaperFormId Form,
    ReaperStage Stage,
    ReaperVisualActionKind ActionKind,
    int Skill,
    int SkillLevel,
    int ActionId,
    int Target,
    Vector2 Origin,
    Vector2 Direction,
    int Seed,
    byte TimelinePhase,
    float NormalizedTime);