first commit
This commit is contained in:
16
NitroxClient/GameLogic/Simulation/PropulsionGrab.cs
Normal file
16
NitroxClient/GameLogic/Simulation/PropulsionGrab.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace NitroxClient.GameLogic.Simulation
|
||||
{
|
||||
public class PropulsionGrab : LockRequestContext
|
||||
{
|
||||
public PropulsionCannon Cannon { get; }
|
||||
public GameObject GrabbedObject { get; }
|
||||
|
||||
public PropulsionGrab(PropulsionCannon Cannon, GameObject GrabbedObject)
|
||||
{
|
||||
this.Cannon = Cannon;
|
||||
this.GrabbedObject = GrabbedObject;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user