export interface IMovingDirection {
    x: -1 | 0 | 1;
    y: -1 | 0 | 1;
}
