Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

cpp vector2

// generic Vector2 struct
template <typename Type>
struct Vector2 {
    Type x, y;
};
 
PREVIOUS NEXT
Tagged: #cpp
ADD COMMENT
Topic
Name
1+6 =