first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

13
objects/shapes/vp_size.cpp Executable file
View File

@@ -0,0 +1,13 @@
#include "vp_size.h"
namespace vp_objects {
vp_size::vp_size(int width, int height): width(width), height(height) {
}
vp_size::~vp_size() {
}
}