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;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    private float f386e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private float f387f;

    public SDKMotionEvent() {
    }

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

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

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

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

    public void setX(float f2) {
        this.f386e = f2;
    }

    public void setY(float f2) {
        this.f387f = f2;
    }

    public SDKMotionEvent(int i2, float f2, float f3) {
        this.b = i2;
        this.f386e = f2;
        this.f387f = f3;
    }
}
