mirror of
https://github.com/alibaba/GCanvas.git
synced 2025-12-08 17:36:42 +00:00
11 lines
161 B
C++
11 lines
161 B
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) {}
|
|
};
|