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