mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
12 lines
209 B
C#
12 lines
209 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ACE.Server.Physics.Command
|
|
{
|
|
public class InputEvent
|
|
{
|
|
public uint InputAction;
|
|
public bool Start;
|
|
}
|
|
}
|