rokojori-godot/rokojori-cpp-generator/source/cpp-creation/Parameter.ts

10 lines
109 B
TypeScript
Raw Normal View History

2024-08-02 06:22:12 +00:00
export class Parameter
{
name = "";
type = "";
get()
{
return `${this.type} ${this.name}`;
}
}