BullCowGame class functions

Honestly i’m a tiny bit lost at what i’m doing at the moment. Everything seems to have sped up pretty fast, although it might be cause i’m very tired :stuck_out_tongue:

#pragma once

class FBullCowGame
{
public:
    int Difficulty();
    int GetLives();
    int HowManyBulls();
    int HowManyCows();
    bool bWinOrLose();
    bool bCheckIsogram();
    bool bCheckLength();

private:
};

Privacy & Terms