You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
464 B
16 lines
464 B
using AX.InputSystem; |
|
using AX.MessageSystem; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class PackOrTackHoseCommand : Command |
|
{ |
|
public static readonly PackOrTackHoseCommand Instance = new PackOrTackHoseCommand(); |
|
|
|
public override void Execute(long gameObjID, CmdArgs arg) |
|
{ |
|
base.Execute(gameObjID, arg); |
|
MessageDispatcher.SendMessage(gameObjID, "PACK_OR_TACK_HOSE_COMMAND", arg); |
|
} |
|
}
|
|
|