mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
25 lines
455 B
C++
25 lines
455 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
class FileSelectIconID {
|
|
public:
|
|
enum EFellowID {
|
|
|
|
};
|
|
|
|
FileSelectIconID();
|
|
FileSelectIconID(const FileSelectIconID &);
|
|
|
|
void set(const FileSelectIconID &);
|
|
void setMiiIndex(u16);
|
|
bool isMii() const;
|
|
u16 getMiiIndex() const;
|
|
void setFellowID(FileSelectIconID::EFellowID);
|
|
bool isFellow() const;
|
|
FileSelectIconID::EFellowID getFellowID() const;
|
|
|
|
bool _0;
|
|
u16 _2;
|
|
};
|