Scaffolding

This commit is contained in:
2022-01-12 08:59:52 +08:00
commit 8fd3d27a9e
17 changed files with 13151 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
/**
* 群体类型
*/
class Group {
}
export default Group;
export { Group };
+10
View File
@@ -0,0 +1,10 @@
/**
* 群中的个体类型
*/
class Individual {
}
export default Individual;
export { Individual };
+8
View File
@@ -0,0 +1,8 @@
import { Individual } from "./Individual";
import { Group } from "./Group";
export {
Individual,
Group
}