You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
218 B
18 lines
218 B
7 months ago
|
#include <iostream>
|
||
7 months ago
|
#include "fix1.hpp"
|
||
7 months ago
|
|
||
|
using std::cout;
|
||
|
|
||
7 months ago
|
void Shape::draw(RenderTarget& target) {
|
||
7 months ago
|
cout << "shape draw\n";
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
RenderTarget target;
|
||
|
Shape shape;
|
||
|
|
||
|
shape.draw(target);
|
||
|
|
||
|
return 0;
|
||
|
}
|