mirror of
https://github.com/Kaveinator/NetickProForUnity.git
synced 2025-10-27 02:09:06 -07:00
12 lines
231 B
C#
12 lines
231 B
C#
using UnityEngine;
|
|
using Netick;
|
|
using Netick.Unity;
|
|
|
|
namespace Netick.Samples.Bomberman
|
|
{
|
|
public struct BombermanInput : INetworkInput
|
|
{
|
|
public Vector2 Movement;
|
|
public NetworkBool PlantBomb;
|
|
}
|
|
} |