© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•2y ago•
87 replies
Array

Help designing classes for a game

using System;
using System.Drawing;

namespace Breakout
{
    //*************************************************************
    //Enums
    //*************************************************************
    public enum MenuStates { Start, None };
    internal class Menu
    {
        //*************************************************************
        //Fields
        //*************************************************************
        private MenuStates mMenuState;

        //*************************************************************
        //Constructors
        //*************************************************************
        public Menu()
        {

        }

        //*************************************************************
        //Properties
        //*************************************************************


        //*************************************************************
        //Methods
        //*************************************************************
        public void Draw(Graphics g)
        {

        }

    }
}
using System;
using System.Drawing;

namespace Breakout
{
    //*************************************************************
    //Enums
    //*************************************************************
    public enum MenuStates { Start, None };
    internal class Menu
    {
        //*************************************************************
        //Fields
        //*************************************************************
        private MenuStates mMenuState;

        //*************************************************************
        //Constructors
        //*************************************************************
        public Menu()
        {

        }

        //*************************************************************
        //Properties
        //*************************************************************


        //*************************************************************
        //Methods
        //*************************************************************
        public void Draw(Graphics g)
        {

        }

    }
}


Have to design a menu class for a game assignments I'm working in Windows form using my teachers template. I posted somthing similar today earlier but found out my code wasn't any good. I can share the actual file on GitHub if anyone is interested in helping me out or guiding me through it
https://github.com/SonicArray3/Breakout
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements
Next page

Similar Threads

❔ Designing a Worker system for a game
C#CC# / help
4y ago
❔ Help with designing a functional container object
C#CC# / help
4y ago
help for a console game
C#CC# / help
3y ago
✅ Help interpreting classes
C#CC# / help
17mo ago