diff options
author | Benji Dial <benji6283@gmail.com> | 2021-03-04 19:11:42 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-03-04 19:11:42 -0500 |
commit | 406af09ade55553e2b064506c3ba3c89bd965d73 (patch) | |
tree | dd6da93bc329d6b1097aa1afcde2af19491dfc8e /src/user/raleigh/util.cpp | |
parent | 86af7f631080bc4b45846bd7f382c4cedcbec2b4 (diff) | |
download | portland-os-406af09ade55553e2b064506c3ba3c89bd965d73.tar.gz |
start of a c++ widget toolkit, c++ runtime
Diffstat (limited to 'src/user/raleigh/util.cpp')
-rw-r--r-- | src/user/raleigh/util.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/user/raleigh/util.cpp b/src/user/raleigh/util.cpp new file mode 100644 index 0000000..958897b --- /dev/null +++ b/src/user/raleigh/util.cpp @@ -0,0 +1,6 @@ +#include <raleigh/util.h> + +coord::coord(uint32_t x, uint32_t y) + : x(x), y(y) {} +coord::coord() + : x(0), y(0) {}
\ No newline at end of file |