mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-01 19:57:18 -04:00
9 lines
71 B
C++
9 lines
71 B
C++
#pragma once
|
|
|
|
struct Stack
|
|
{
|
|
int id;
|
|
Stack() : id(0)
|
|
{}
|
|
};
|