2
1
Ответвление 0
ipdbot/node_modules/canvas/src/Point.h
2022-04-18 15:32:07 +02:00

10 строки
161 Б
C++

// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
#pragma once
template <class T>
class Point {
public:
T x, y;
Point(T x, T y): x(x), y(y) {}
};