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
|
//GETTERS
|
||||||
int getKeyLength();
|
int getKeyLength();
|
||||||
|
inputFlags noFlags();
|
||||||
|
|
||||||
//SETTERS
|
//SETTERS
|
||||||
void setKeyLength(int keyLengthNew);
|
void setKeyLength(int keyLengthNew);
|
||||||
|
@ -5,6 +5,11 @@ int getKeyLength()
|
|||||||
return keyLength;
|
return keyLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inputFlags noFlags()
|
||||||
|
{
|
||||||
|
return (inputFlags) {0, 0};
|
||||||
|
}
|
||||||
|
|
||||||
void setKeyLength(int keyLengthNew)
|
void setKeyLength(int keyLengthNew)
|
||||||
{
|
{
|
||||||
keyLength = keyLengthNew;
|
keyLength = keyLengthNew;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user