예제 #1
0
파일: Shape2D.cs 프로젝트: xuzhg/Moutain
        public Shape2D(Vector2 position, Vector2 scale, string tag)
        {
            this.Position = position;
            this.Scale    = scale;
            this.Tag      = tag;

            Log.Info($"[Shape2D] {Tag} - has been registered!");

            ExpressedEngine.RegisterShape(this);
        }