mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 17:45:11 +02:00
7 lines
97 B
C++
7 lines
97 B
C++
#pragma once
|
|
|
|
template <class T>
|
|
struct LinkedListItem : public T {
|
|
LinkedListItem<T> *next;
|
|
};
|