16 lines
181 B
C++
16 lines
181 B
C++
#include "stdafx.h"
|
|
#include "KPrimitive.h"
|
|
#include "KResource.h"
|
|
|
|
KPrimitive::KPrimitive(void)
|
|
{
|
|
}
|
|
|
|
KPrimitive::~KPrimitive(void)
|
|
{
|
|
}
|
|
|
|
bool KPrimitive::IsValid()
|
|
{
|
|
return true;
|
|
} |