mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
f4a11ef825
Consolidated and simplified the module API system. Various other fixes and improvements.
25 lines
824 B
C++
25 lines
824 B
C++
// ------------------------------------------------------------------------------------------------
|
|
#include "Common.hpp"
|
|
#include "Module.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include <stdlib.h>
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
int SampleFunction()
|
|
{
|
|
OutputMessage("Hello from the sample plugin function!");
|
|
return rand();
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void SampleType::SampleMethod() const
|
|
{
|
|
OutputMessage("I have the values %d and %d", m_MyVal, mMyNum);
|
|
}
|
|
|
|
} // Namespace:: SqMod
|