I have a class BankAccount that has methods like deposit, withdraw, etc. I have 2 questions:
- How can I "pay" other members (transfer values between instances of BankAccount)
- I want to build a casino for the bank members to gamble with. Would I create a separate class, file, or just have the functions for the casino outside of the
BankAccountclass? Preferably I would have a separatecasinoclass but I don't understand OOP and inheritance enough to do so.