mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +00:00
13 lines
298 B
C#
13 lines
298 B
C#
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);
|
|
}
|
|
}
|
|
}
|