package com.seewo.sdk.model;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class SDKMotionEvent implements SDKParsable {
    public static final int ACTION_DOWN = 3;
    public static final int ACTION_MOVE = 3;
    public static final int ACTION_UP = 2;
    private int b;
    private float d;
    private float e;

    public SDKMotionEvent() {
    }

    public int getAction() {
        return this.b;
    }

    public float getX() {
        return this.d;
    }

    public float getY() {
        return this.e;
    }

    public void setAction(int i2) {
        this.b = i2;
    }

    public void setX(float f) {
        this.d = f;
    }

    public void setY(float f) {
        this.e = f;
    }

    public SDKMotionEvent(int i2, float f, float f2) {
        this.b = i2;
        this.d = f;
        this.e = f2;
    }
}
