quantum-space-buddies/QSB/ItemSync/WorldObjects/QSBNomaiConversationStone.cs

13 lines
298 B
C#
Raw Normal View History

namespace QSB.ItemSync.WorldObjects
{
internal class QSBNomaiConversationStone : QSBOWItem<NomaiConversationStone>
{
public override void Init(NomaiConversationStone attachedObject, int id)
{
ObjectId = id;
AttachedObject = attachedObject;
base.Init(attachedObject, id);
}
}
}