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;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private int f3577b;

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

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

    public SDKMotionEvent() {
    }

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

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

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

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

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

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

    public SDKMotionEvent(int i2, float f2, float f3) {
        this.f3577b = i2;
        this.f3578g = f2;
        this.f3579r = f3;
    }
}
