Example #1
0
        public Shape2D(Vector2 Position, Vector2 Scale, String Tag, Color color)
        {
            this.Position = Position;
            this.Scale    = Scale;
            this.Tag      = Tag;
            this.color    = color;

            Log.Info($"[SHAPE2D]({Tag}) - Has Been registered!");
            RTSEngine.RegisterShape(this);
        }