mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
19 lines
280 B
C#
19 lines
280 B
C#
using System;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
[Serializable]
|
|
public class TouchPatternItem
|
|
{
|
|
public BodyPartType bodyPartType;
|
|
|
|
public int heartLevel;
|
|
|
|
public ReactionPattern reactionPattern;
|
|
|
|
public int advanceTime;
|
|
|
|
public ReactionPattern advanceReactionPattern;
|
|
}
|
|
}
|