Files
uni_notes/00 Inbox/29605321 - OOP 4_16.md
2026-04-16 11:47:45 +02:00

333 B

created, course, topic, related, type, status, tags
created course topic related type status tags
2026-04-16 08:01 lecture 🔴
university

📌 Summary

[!abstract]


📝 Content

Classes

C approach of defining a Pokemon:

typedef struct {
	int exp;
	int attack;
	unsigned int hp;
	char name[];
} Pokemon;
class Pokemon() {

}