mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:12:27 +00:00
8 lines
123 B
C++
8 lines
123 B
C++
#pragma once
|
|
|
|
class MobGroupData
|
|
{
|
|
public:
|
|
// Required so this class is polymorphic
|
|
virtual void emptyFunc() {}
|
|
}; |