Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7857655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T21:06:06+00:00 2026-06-02T21:06:06+00:00

I have two projects: ClientProj and ServerProj , which both share a SharedLibrary containing

  • 0

I have two projects: ClientProj and ServerProj, which both share a SharedLibrary containing the basics of my game.

Inside this library I have the class GameObject which is the base class from which many other game items inherit.

Inside GameObject is a SetPosition() method.

Here’s my problem: When I run SetPosition() on the client, I wish to add some additional code / override the method completely. The code I wish to add however relates to classes that are only present in the ClientProj namespace, which the SharedLibrary knows nothing about.

Is there any clean way to override or extend the library methods?

Updated: Note that the instances of GameObject and all things that inherit it are defined, contained and handled all within the SharedLibrary namespace. For the most part the ClientProj and ServerProj only handle networking, users and input/output.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T21:06:07+00:00Added an answer on June 2, 2026 at 9:06 pm

    You can use the Proxy pattern and have the game objects inherit from the proxy class instead of the real class:

    SharedLibrary:

    public class GameObject
    {
        public virtual void SetPosition() { ... }
    }
    
    public class DelegatingGameObject : GameObject
    {
        public GameObject Inner;
        public override void SetPosition() { Inner.SetPosition(); }
    }
    
    public class Tree : DelegatingGameObject
    {
    }
    

    ClientLibrary:

    class ClientGameObject : GameObject
    {
        public override void SetPosition()
        {
            if (isMonday) base.SetPosition();
        }
    }
    
    var tree = new Tree { Inner = new ClientGameObject() };
    tree.SetPosition();
    

    SharedLibrary:

    public class GameObject
    {
        public virtual void SetPosition() { Console.WriteLine("GameObject.SetPosition"); }
        public static event Func<GameObject> Factory;
        internal static GameObject CreateBase() { var factory = Factory; return (factory != null) ? factory() : new GameObject(); }
    }
    
    internal class GameObjectBase : GameObject
    {
        private readonly GameObject baseGameObject;
        protected GameObjectBase() { baseGameObject = GameObject.CreateBase(); }
        public override void SetPosition() { baseGameObject.SetPosition(); }
    }
    
    internal class Tree : GameObjectBase
    {
        public override void SetPosition()
        {
            Console.WriteLine("Tree.SetPosition");
            base.SetPosition();
        }
    }
    
    public static class Game
    {
        public static void Start()
        {
            new Tree().SetPosition();
        }
    }
    

    ClientLibrary:

    internal class ClientGameObject : GameObject
    {
        public override void SetPosition()
        {
            Console.WriteLine("ClientGameObject.SetPosition Before");
            base.SetPosition();
            Console.WriteLine("ClientGameObject.SetPosition After");
        }
    }
    
    internal static class Program
    {
        static void Main(string[] args)
        {
            GameObject.Factory += () => new ClientGameObject();
            Game.Start();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two projects which is calling a Class Library. Can i in my
I have two projects, a Cocoa iPhone application and a static library which it
I have two projects in QtCreator, which both include two .pri files in another
We have two projects that are both class libraries. Project 1 is a VS
I have two projects in my solution; one which builds a static lib, another
I have two projects that I want to share some code, So I set
I have two projects, both of them data access layers, and both using EF.
I have two projects : Menu and Module and they are both in the
okay so I have two projects one in which I have done all the
it concerns following: I have two projects which should exists more or less independently

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.