KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
position.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2 examples/dreamcast/raylib/raytris/src/position/position.h
3 Copyright (C) 2024 Cole Hall
4*/
5
6#pragma once
7
8class Position{
9 public:
10 Position(int row, int column);
11 int row;
12 int column;
13};
Definition position.h:8
int row
Definition position.h:11
int column
Definition position.h:12
Position(int row, int column)
Definition position.cpp:8