This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
wiimmfi-watcher/app/src/main/java/com/example/wiimmterfaceandroid/WatchCodeFragment.java

20 lines
506 B
Java
Raw Normal View History

package com.example.wiimmterfaceandroid;
2021-05-02 22:38:15 -06:00
import android.os.Bundle;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
public class WatchCodeFragment extends Fragment {
public WatchCodeFragment() { super(R.layout.friend_code_input_fragment); }
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
}
}