mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
36 lines
354 B
C++
36 lines
354 B
C++
#include "Contract.h"
|
|
#include "Interpreter.h"
|
|
|
|
using namespace Script;
|
|
/*
|
|
JED: V III
|
|
*/
|
|
|
|
Contract::Contract()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void Contract::executeCreate()
|
|
{
|
|
|
|
}
|
|
void Contract::executeRemove()
|
|
{
|
|
|
|
}
|
|
void Contract::executeFund()
|
|
{
|
|
|
|
}
|
|
void Contract::executeAccept()
|
|
{
|
|
//std::vector<char> code;
|
|
|
|
//Interpreter interpreter;
|
|
//interpreter.interpret(this,code);
|
|
}
|
|
|
|
|