created getter for no inputFlags
This commit is contained in:
parent
54b137165a
commit
b540d5f36c
@ -39,6 +39,7 @@ static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS <
|
||||
|
||||
//GETTERS
|
||||
int getKeyLength();
|
||||
inputFlags noFlags();
|
||||
|
||||
//SETTERS
|
||||
void setKeyLength(int keyLengthNew);
|
||||
|
@ -5,6 +5,11 @@ int getKeyLength()
|
||||
return keyLength;
|
||||
}
|
||||
|
||||
inputFlags noFlags()
|
||||
{
|
||||
return (inputFlags) {0, 0};
|
||||
}
|
||||
|
||||
void setKeyLength(int keyLengthNew)
|
||||
{
|
||||
keyLength = keyLengthNew;
|
||||
|
Loading…
x
Reference in New Issue
Block a user