Files
ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/canvas/src/Point.h
2023-07-24 11:13:08 +08:00

12 lines
248 B
C++

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